Posts

Showing posts with the label programming in c. First program in c

Hello program in c language

Hello program is first program in c Here is full programme #include<stdio.h> #include<conio.h> void main { clrscr() ; printf("hello") ; getch() ; }  Program is complete now you can run this in turbo c Thanks