Report Bug
Qus :

What will be the output of the following program?

int main() 
{ 
	int x=5; 
	printf(“%d %d %d”,x,x<<2,x>>2); 
}

Qus



A. 1 20 5
B. 5 1 20
C. 5 20 1
D. 20 1 5


Solution
C. 5 20 1






Report Bug