1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
#include <stdio.h> void test_function(void); static void test_function2(void) { printf("Hello World!"); // printf("Hello World!" ); } int main() { printf("Hello World!"); test_function(); test_function2(); // test_functions(); // test_functions2(); return 0; } void test_function(void) { printf("Hello World!"); }