write a c program to display a name
Answers
Answered by
0
Answer:
#include<conio.h>
#include<stdio.h>
void main()
{
clrscr( );
printf(“XXX”);
getch( );
}
output will be
XXX
hope this helped : )
Answered by
1
#include<stdio.h>
int main{
printf("NAME");
return 0;
}
output: NAME
Similar questions