Pages

Wednesday, 28 March 2018

program to print Hello in 'C'


#include<stdio.h>
void main()
{
clrscr();
printf( "hello");
getchar();
}

1 comment: