Report Bug
Qus :

What will be the output of the following code?

int a = 10, b = 20;
printf("%d", a + b);

Qus

A. 30
B. 1020
C. 10+20
D. Compiler error


Solution
A. 30






Report Bug