program to print Hello word in c programming language Get link Facebook X Pinterest Email Other Apps December 09, 2019 //write a program to find Hello word:- #include<stdio.h> #include<conio.h> void main () { clrscr(); printf("\nHello word"); getch(); } ============================== OUTPUT:- Hello word ============================== Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment