Home » C Programming » Input / Output

What will be the output of the program? #include char *str = "char *str = %c%s%c; main(){ printf(str, 34, str, 34);}"; int main() { printf(str, 34, str, 34); return 0; }

Correct Answer: char *str = "char *str = %c%s%c; main(){ printf(str, 34, str, 34);}"; main(){ printf(str, 34, str, 34);}

← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion