Art, asked by imranmunawar791, 1 month ago

statement is used to assign or give a value to a valiable​

Answers

Answered by janwasian
0

Explanation:

Assigning a value to a variable means storing a value to a variable. To assign a value, use the equal sign: ... In this one line above, we declare a variable called age when we assign the value 55. In this case, the value is declared implicitly; to explicitly declare a variable, use the command var before a variable name.

Answered by saanjhkaur07
0

Explanation:

The most common form of statement in a program uses the assignment operator, =, and either an expression or a constant to assign a value to a variable: variable = expression; variable = constant; The symbol of the assignment operator looks like the mathematical equality operator but in C++ its meaning is different.

Similar questions