Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- typedef struct
- {
- int data;
- struct unnod *urm;
- } unnod;
- int main()
- {
- int x = 333;
- int *p = &x;
- int **pp = &p;
- int ***ppp = &pp;
- printf("%d", (***ppp));
- puts("");
- printf("%p", ppp);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement