0

Help me what it wrong with this script?

#include <iostream> using namespace std; int main() { int myVariable = 10; cout << myVarible; return 0; } // Outputs 10

22nd Feb 2017, 7:53 AM
Matthew
Matthew - avatar
2 Answers
+ 6
The problem is that you declared myVariable but reference to myVarible. You missed an 'a' character.
22nd Feb 2017, 8:35 AM
Tamás Barta
Tamás Barta - avatar
0
oh i see thanks man
23rd Feb 2017, 8:58 AM
Matthew
Matthew - avatar