Saturday, 5 September 2020

Program to print Hello World in C

 /* A basic C  program to print"Hello World"*/


#include<stdio.h> 
int main()
{
printf("HELLO WORLD!");
return 0;
}

OUTPUT

Hello World!

Description

Just a simple program which display hello world to the user

1 comment:

If you have any doubt, please ask in the comment section.

Search This Blog

Program to print weather the number is happy or not.

#include <stdio.h> #include <math.h> int main () { int i , j , num , temp , sum = 0 ; printf ( "Enter number\n...