Testing.

Monday, 26 December 2016

C progamming language: My first c program

#include<stdio.h>
#include<conio.h>
void main()
{
printf("IT IS MY FIRST C PROGRAM ");
getch();
}

output: IT IS MY FIRST C PROGRAM 

No comments:

Post a Comment