C - Operators - Discussion

You Are Here :: Home > C > Operators - Discussion

 



Q.

What will be the output of the following program ?

#include
void main()
{
int a = 36, b = 9;
printf("%d",a>>a/b-2);
}

A. 9 B. 7
C. 5 D. none of these

Answer: Option A
Explaination:

 


No Explanation



Discussion

Your Comments Goes here...
NameDiscussion