0
I don't underatand myVariable...
4 Respostas
+ 1
its simply an example of a variable. myVariable = "Andre". :)
+ 1
A variable can be named anything. myVariable is a generic name for a variable.
+ 1
You have to define it. So if i were to say
Int x = 42;
cout << x << endl;
It would output 42
0
I don't understand your question.