Thu May 17 2018
Hello World
C Programming1066 views
File Name: c-hello-world.c
#include<stdio.h>
int main() {
/* Display text on the screen */
printf("Hello World!\n");
return 0;
}
/* Output */
/* Hello World */
Author:Geekboots
#include<stdio.h>
int main() {
/* Display text on the screen */
printf("Hello World!\n");
return 0;
}
/* Output */
/* Hello World */
We use cookies to improve your experience on our site and to show you personalised advertising. Please read our cookie policy and privacy policy.