fixed wrong dependency in readme

This commit is contained in:
Ryzerth
2020-12-24 19:44:07 +01:00
parent 22541ae0f4
commit c887b96a77
3 changed files with 13 additions and 1 deletions

13
test.c Normal file
View File

@@ -0,0 +1,13 @@
#include <stdio.h>
int main() {
int mavariable = 420;
int* mon_pointer = &mavariable;
struct
printf("%p\n", *mon_pointer);
}