Program:
/*WAP to print your name*/
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("My name is Ashish kumar.");
printf("n I am B.C.A. 1st semester student.");
getch();
}


Output:
My name is Ashish kumar.
I am B.C.A. 1st semester student.

Anmol

  • 1.
    Program: /*WAP to printyour name*/ #include<stdio.h> #include<conio.h> void main() { clrscr(); printf("My name is Ashish kumar."); printf("n I am B.C.A. 1st semester student."); getch(); } Output: My name is Ashish kumar. I am B.C.A. 1st semester student.