0
Is it wrong----- int var=12?if right then how?????var is variable then how??
4 Answers
+ 2
look at this
int var=12;
cout<<var<<endl;
var=4;
cout<<var<<endl;
output:
12
4
The value of var changed from 12 to 4 thus it is a variable .
+ 1
Could you copy/paste the code here?
+ 1
No, I'm asking Chandan.
0
Zen did you asked me?