What is the output produced by the following code: char ch = 'A'; printf("print %c, %d\n", ch, ch);
print: A, 65
print: %c, %d\n
print: 65, 65
print: A, A
print: A, a