C Program to Print "HELLO"


Source Code


#include <stdio.h>
#include <conio.h>

int main()
{
   printf("HELLO"); /* printf() prints the content inside quotation */
   getch();
}

Output

HELLO

Download

No comments:

Post a Comment