/* * Learning C with some easy code * Hello World */ #include #include int main() { printf("Hello world!\n"); return EXIT_SUCCESS; }