4 lines
77 B
C
4 lines
77 B
C
int array[10];
|
|
pointer = array;
|
|
/* or alternatively: */
|
|
pointer = &array[0];
|