Define variable. How is it declared in C++?
Answers
Answered by
3
Explanation:
It means you are telling the compiler where to create the storage for that variable. For example, if you write: int x; int main() { x = 3; } The line int x; both declares and defines the variable; it effectively says, "create a variable named x, of type int.
Answered by
0
Answer:
ok
Explanation:
Can I explain little later?
Similar questions