/* * First C program that says Hello (Hello.c) */ #include// Needed to perform IO operations int main() { // Program entry point printf("Hello, world!\n"); // Says Hello return 0; // Terminate main() } // End of main()
output
Hello, world!

/* * First C program that says Hello (Hello.c) */ #include// Needed to perform IO operations int main() { // Program entry point printf("Hello, world!\n"); // Says Hello return 0; // Terminate main() } // End of main()
output