Report Bug
Qus :

What will be the output of the following code?

int x = 10, y = 20;
int *p1 = &x, *p2 = &y;
printf("%d", *p1 + *p2)

Qus

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


Solution
C. 30






Report Bug