M
Q. What is the output of the following code?
Code:
#include <stdio.h>
int main() {
char ch = 'A' + 2;
printf("%c", ch);
return 0;
}
int main() {
char ch = 'A' + 2;
printf("%c", ch);
return 0;
}
- Correct Answer - Option(B)
- Views: 16
- Filed under category C Programming
Discusssion
Login to discuss.