init
This commit is contained in:
9
c/pointers.c
Normal file
9
c/pointers.c
Normal file
@ -0,0 +1,9 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
int x = 8;
|
||||
int *point = &x;
|
||||
int **pointpoint = &point;
|
||||
printf("x: %d\n", **pointpoint);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user