ft_nm/not_so_easy_test.c

9 lines
116 B
C
Raw Normal View History

2024-10-25 16:18:34 +00:00
#include <stdio.h>
int a_global = 40;
int main(void) {
printf("Global is: %d\n", a_global);
return (0);
}