Print hello in c programming.

 

#include<stdio.h>
#include<conio.h>
int main()
{
printf("hello");
return 0;
}

Output: hello

Comments

Post a Comment

Popular posts from this blog

To check the maximum number in switch case in c programming.

Add, Subtract, Multiply and Divide in C programming.