Computer Science, asked by pannupannu, 3 months ago

Write the syntax of declaring variable

Answers

Answered by KRAAM0345
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 Anonymous
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