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