write a C program to print the program itself ?!
Answer Posted / manish
#include<stdio.h>
char*s="char*s=%c%s%c;main(){printf(s,34,s,34);}";
main()
{
printf(s,34,s,34);
}
| Is This Answer Correct ? | 25 Yes | 15 No |
Post New Answer View All Answers
Which function in C can be used to append a string to another string?
Do you know the difference between exit() and _exit() function in c?
What is the difference between array and linked list in c?
Are pointers really faster than arrays?
What is huge pointer in c?
What is const volatile variable in c?
How is a macro different from a function?
Explain what are linked list?
What is #define in c?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
to find the closest pair
Is javascript based on c?
write a program to concatenation the string using switch case?
What are the types of data types and explain?
What is the difference between declaring a variable by constant keyword and #define ing that variable?