// Welcome to c programming.
#include<stdio.h>
#include<conio.h>
main()
{
printf("Welcome to c programming ");
printf("\n");
printf("This is our first program");
getch();
}
This is basic c program.This program doesn't take any input from the user .
#include<stdio.h>
#include<conio.h>
main()
{
printf("Welcome to c programming ");
printf("\n");
printf("This is our first program");
getch();
}
This is basic c program.This program doesn't take any input from the user .
No comments:
Post a Comment