Programming MCQS - QUESTION DETAILS

What is the output of printf("%c", 'a' - 32);?
A. a
B. A
C. b
D. B

'a' - 32 results in the ASCII value of 'A'.

Similar Questions

What is the purpose of the 'continue' statement in a loop?






What is the role of the 'static' keyword in C?






In C, how do you declare a constant?






What is the role of the 'static' keyword in Java?






How do you achieve multiple inheritance in Java?






What is the output of printf("%d", 5 + 3 * 2);?






What is the output of printf("%c", 'A' + 1);?






Which method is called automatically when an object is garbage collected?






What is the purpose of the 'strcat' function in C?






How do you define a function in C?