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

5 lines
77 B
C
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
int array[10];
pointer = array;
/* or alternatively: */
pointer = &array[0];