/* * 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()
Thank you
No comments:
Post a Comment
Thank you