Apr 16, 2020
Hello World
C Programming 696 views
hello-world.txt
#include<stdio.h>
int main() {
/* Display text on the screen */
printf("Hello World!\n");
return 0;
}
/* Output */
Hello World
#include<stdio.h>
int main() {
/* Display text on the screen */
printf("Hello World!\n");
return 0;
}
/* Output */
Hello World