Skip to content
Related Articles
Open in App
Not now

Related Articles

Algorithms Quiz | SP2 Contest 1 | Question 6

Improve Article
Save Article
  • Last Updated : 28 Aug, 2018
Improve Article
Save Article

Predict the output of the below C program:




#include <stdio.h>
  
int main()
{
    int a = - -3;
      
    printf("a=%d", a);
  
    return 0;
}


(A) a=3
(B) a=-3
(C) a=2
(D) None of the above


Answer: (A)

Explanation: Notice the space between the two minus(-) operators. Here unary operation minus(-) is applied twice instead of the pre-decrement operator, we know in maths that minus*minus gives plus. Therefore, – -3 = -(-3) = 3.

Quiz of this Question
Please comment below if you find anything wrong in the above post

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!