/* 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 addr(int *a);

int main(int argc,char *argv[])
{
   int a[] = { 1, 2 };
   addr(a);
   printf("%d %d\n", a[0], a[1]);
   return 0;
}
