RosettaCodeData/Task/Pointers-and-references/C/pointers-and-references-7.c

5 lines
77 B
C
Raw Permalink Normal View History

2013-10-27 22:24:23 +00:00
int array[10];
pointer = array;
/* or alternatively: */
pointer = &array[0];