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