mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-02-03 13:24:46 +01:00
13 lines
147 B
C
13 lines
147 B
C
|
#include <stdio.h>
|
||
|
|
||
|
|
||
|
|
||
|
int main() {
|
||
|
int mavariable = 420;
|
||
|
|
||
|
int* mon_pointer = &mavariable;
|
||
|
|
||
|
struct
|
||
|
|
||
|
printf("%p\n", *mon_pointer);
|
||
|
}
|