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

Reverse table in c programming.

Simple interests in c programming