To Print " It is my first program "
It is my first program
#include<stdio.h> /*tells compiler to include std input output file.*/
#include<conio.h>/*tells compilers to provide console input/output*/
void main()
{
clrscr(); /*it clear the screen*/
printf("It is my First program");
getch(); /* return the value zero to OS*/
Post a Comment