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
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is a pointer in c?
write a c program for swapping two strings using pointer
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
How we can insert comments in a c program?
Why c language is called c?
What is the difference between fread buffer() and fwrite buffer()?
What is int main () in c?
What is static volatile in c?
What is strcmp in c?
What type of function is main ()?
Why is c called a structured programming language?
What do mean by network ?
What are control structures? What are the different types?
What is data structure in c language?