ads

Sunday, 28 August 2016

C PROGRAM FOR HELLO WORLD

#include <stdio.h>
#include <conio.h>
void main()
{
printf("Hello world\n");
getch();
}

No comments:

Post a Comment