07-25-2023, 10:49 AM
The "Hello, World!" program is a simple introductory program that prints the text "Hello, World!" to the console. Here's how you can do it:
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}