C - Keywords - Discussion

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

 



Q.

What will be the output of following program ?

#incllude
int main( )
{
int a,b;
a = -3 - - 25;
b = -3 - - (-3);
printf("a=%d b=%d\n",a,b);
return 0;
}

A. a = 22 b = -6 B. a = -6 b = 22
C. a = 3 b = 3 D. No Output

Answer: Option A
Explaination:

 


No Explanation








Discussion

Your Comments Goes here...
NameDiscussion