Q48
Find the output of the following program. void main() int i=065, j=65; printf("%d %d", i, j);
A.
53 65
AnswerB.
65 65
C.
065 65
D.
053 65
E.
Syntax error
Answer: Option A
Solution
Answer: Option A
Solution:
As octal 65 ( 065 ) is equivalent of decimal value 53.