/* Collection of code snippets by Arne Vajhøj */
/* (likely posted to comp.os.vms/INFO-VAX, INFO-TPU, MACRO32, eksperten.dk, newz.dk, LinkedIn or other place sometime between 1990 and now) */
#include <stdio.h>

void f(int *a1,int a2[], int a3[10])
{
   printf("%d %d %d\n",sizeof(a1),sizeof(a2),sizeof(a3));
}

int main()
{
   int a[10];
   f(a,a,a);
   return 0;
}
