ft_nm/not_so_easy_test.c

9 lines
116 B
C

#include <stdio.h>
int a_global = 40;
int main(void) {
printf("Global is: %d\n", a_global);
return (0);
}