14
examples/tests/step_by_step_test.c
Archivo normal
14
examples/tests/step_by_step_test.c
Archivo normal
@@ -0,0 +1,14 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
int x = 42;
|
||||
printf("x = %d\n", x);
|
||||
|
||||
int *ptr = &x;
|
||||
printf("*ptr = %d\n", *ptr);
|
||||
|
||||
*ptr = 100;
|
||||
printf("x after assignment = %d\n", x);
|
||||
|
||||
return 0;
|
||||
}
|
||||
Referencia en una nueva incidencia
Block a user