SDRPlusPlus/test.c

13 lines
147 B
C
Raw Normal View History

2020-12-24 19:44:07 +01:00
#include <stdio.h>
int main() {
int mavariable = 420;
int* mon_pointer = &mavariable;
struct
printf("%p\n", *mon_pointer);
}