際際滷

際際滷Share a Scribd company logo
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.

More Related Content

Anmol

  • 1. 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.