Write the syntax of declaring variable
Answers
Answered by
1
Answer:
Variable declaration and initialization
This informs the compiler the size to reserve in memory for the variable and how to interpret its value. The syntax to declare a new variable in C++ is straightforward: we simply write the type followed by the variable name (i.e., its identifier).
Explanation:
Answered by
2
Answer:
Variable declaration and initialization
This informs the compiler the size to reserve in memory for the variable and how to interpret its value. The syntax to declare a new variable in C++ is straightforward: we simply write the type followed by the variable name ...
Explanation:
Similar questions