7 lines
56 B
C
7 lines
56 B
C
|
int a;
|
||
|
int *b;
|
||
|
|
||
|
a = 42;
|
||
|
b = &a;
|
||
|
printf("a = %d\n", *b);
|