write a program to print "hello world" in c language.

#include<stdio.h>
#include<conio.h>
int main()
{
char a[]="hello";
int i;
for(i=0;i<=5;i++)
{
printf("\n%c",a[i]);
}
return 0;
}


Comments

Popular posts from this blog

write a program for insertion sort with example.