Education

Input & Output Devices

how we Print hello in C program


// how we Print hello in output


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

Comments