summaryrefslogtreecommitdiff
path: root/tests/pointers.c
diff options
context:
space:
mode:
authorDavid Moc <personal@cdatgoose.org>2026-03-05 23:38:49 +0100
committerDavid Moc <personal@cdatgoose.org>2026-03-05 23:38:49 +0100
commit0385817bb1301a778bb33f8405a435293b9f8905 (patch)
tree53f4b6f13e393bd368c37ba4363826b46940dfd3 /tests/pointers.c
parent262abf9b552a168ef3ae91f91af97683f16420a7 (diff)
Pushing to repo for safety.
Diffstat (limited to 'tests/pointers.c')
-rw-r--r--tests/pointers.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/pointers.c b/tests/pointers.c
new file mode 100644
index 0000000..669aa2e
--- /dev/null
+++ b/tests/pointers.c
@@ -0,0 +1,13 @@
+int main() {
+ int x = 42;
+ int *p = &x;
+ int **pp = &p;
+
+ int val1 = *p;
+ int val2 = **pp;
+
+ *p = 100;
+ int val3 = x;
+
+ return val1 + val2 + val3;
+}