What will be the output of the program ?
#include int main() { char p[] = "%d\n"; p[1] = 'c'; printf(p, 65); return 0; }
Answer: A
No answer description available for this question.