write a program that print itself even if the source file is
deleted?
Answer Posted / bitan
int main(s){
s="int main(s){s=%c%s%c;printf(s,34,s,34);return 0;}";
printf(s,34,s,34);
return 0;
}
| Is This Answer Correct ? | 3 Yes | 5 No |
Post New Answer View All Answers
Explain can the sizeof operator be used to tell the size of an array passed to a function?
Who invented b language?
What is function prototype in c language?
In which header file is the null macro defined?
What is the use of static variable in c?
What is realloc in c?
What is volatile c?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What are dangling pointers? How are dangling pointers different from memory leaks?
What are linked lists in c?
What are lookup tables in c?
What is pragma in c?
What is merge sort in c?
What is the difference between NULL and NUL?
Explain the difference between #include "..." And #include <...> In c?