write a C program to print the program itself ?!
Answer Posted / prasanna kumar s
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("welcome 2 c language");
getch();
}
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What is 1d array in c?
How can you increase the size of a statically allocated array?
How do you list files in a directory?
What is structure data type in c?
How can my program discover the complete pathname to the executable from which it was invoked?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is volatile variable in c with example?
When would you use a pointer to a function?
What is sizeof array in c?
How do we print only part of a string in c?
Explain Function Pointer?
How can I do graphics in c?
Why is extern used in c?
What are the rules for identifiers in c?
How can I remove the leading spaces from a string?