Answer to Question #24108 in C++ for Nourah
What is wrong with the following code?
for (int i = 0; i < 10; i++) {
int x = 4;
cout << i << endl;
}
cout << x << endl;
1
2013-02-12T09:30:09-0500
IntegerX is used and defined in cycle i (0<i<10), in this way U cannot
"cout" X in any area except cycle (0<i<10).
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
C++
Comments
Leave a comment