Q. What is the output of the following C++ code?
Code:
#include <stdio.h>
int main()
{
char x = '\012';
printf("%d", x);
return 0;
}
β
Correct Answer: (B)
10