1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#include <stdio.h> int global_var = 42; struct Point { int x; int y; }; int add(int a, int b) { return a + b; } void print_hello() { printf("Hello, World!\n"); } #define MAX 100