Help me in solving SYNMCQ23 problem

My issue

Where did 2 and c came from?

Learning course: Learn C++
Problem Link: CodeChef: Practical coding for everyone

Its very simple question :slight_smile:

  1. Where did ‘c’ came from ?
    Ans : As you can see ‘c’ is a variable which have initialize with the data type (int) in order to store the value of “a+2”.
  2. Where did ‘2’ came from?
    Ans : Well 2 is just a constant which would be added once you get the value of ‘a’ from the user.

Keep Coding :slight_smile: