Computer Science, asked by Manasi1976, 10 months ago

How to declare a variable in C++?

Answers

Answered by nikhil4g42
0

the information you provide. the

Answered by SerenaBochenek
1

Datatype variable_name

Explanation:

Variables are those in which their value varies during the execution of the program they are storing the value.

Following are the rules of variable  declaration:

  • There must be starting with the alphabet.
  • No keywords will be the variable name.
  • A special keyword cannot make the name of a variable.  
  • Their length should not increase 8 numbers.

Example:

⇒ int a=89;

Learn more:

https://brainly.in/question/6033711

Similar questions