This repository has been archived on 2026-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
pants/c/pointers.c
2026-03-18 00:46:30 -07:00

10 lines
138 B
C

#include <stdio.h>
int main() {
int x = 8;
int *point = &x;
int **pointpoint = &point;
printf("x: %d\n", **pointpoint);
return 0;
}