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
What are the basic data types associated with c?
What functions are in conio h?
What are types of functions?
Explain about the functions strcat() and strcmp()?
Whats s or c mean?
Can we change the value of constant variable in c?
What is mean by data types in c?
What is a class c rental property?
How is null defined in c?
What does 4d mean in c?
What is pointer and structure in c?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
Is fortran still used in 2018?
What is a function simple definition?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.