write a program in c language to print hello world?
#include <stdio.h>
int main() {
// Print message to the console
printf("Hello, World!\n");
return 0;
}
How to Run:
-
Save the code in a file, e.g.,
hello.c. -
Compile it using a C compiler:
-
Run the output program:
Comments
Post a Comment