write a C program to print the program itself ?!
Answer Posted / abiraj1030&yahoo.com
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("hai");
getch();
}
| Is This Answer Correct ? | 10 Yes | 112 No |
Post New Answer View All Answers
In c language can we compile a program without main() function?
Explain what are linked list?
Why main is used in c?
What is the difference between Printf(..) and sprint(...) ?
What are linked lists in c?
Explain what are run-time errors?
What does int main () mean?
What is the difference between procedural and functional programming?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
List the variables are used for writing doubly linked list program.
What is the meaning of c in c language?
What is an expression?
how to find anagram without using string functions using only loops in c programming
What is function prototype?
What is self-referential structure in c programming?