MCQOPTIONS
What will be the output of the program ?
#include int main() { char p[] = "%d n"; p[1] = 'c'; printf(p, 65); return 0; }