Post

@Python_Dv The correct answer is B) 8 ✅
Explanation:
a = 5, b = 3
a + b = 8
printf("%d", a + b); prints the sum, not concatenation.
So the output is 8, not 53, and there’s no error.
English

@Python_Dv Calculating Output:
The expression a + b evaluates to: 5 + 3 = 8
=>> Answer Options is B) 8.
For More Reference =>>

English

@Python_Dv This is C syntax not Python. The answer is C : error
English











