This commit is contained in:
2025-09-19 16:32:47 +03:00
parent e1b9f50edc
commit a92349ee38
12 changed files with 374 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
#include <stdio.h>
int main(void) {
int m = 29;
int *ab = &m;
printf("m: %d, *ab: %d, ab: %d, address m: %d\n", m, *ab, ab, &m);
m = 32;
printf("m: %d, *ab: %d, ab: %d, address m: %d\n", m, *ab, ab, &m);
*ab = 7;
printf("m: %d, *ab: %d, ab: %d, address m: %d\n", m, *ab, ab, &m);
return 0;
}