+ 1
There print the 1000 why how it can be 500
#include <iostream> using namespace std; int main() { int a =500; a = 1000; cout << a; return 0; }
2 Respuestas
+ 9
The code outputs 1000 for me.
That is the correct output since:
a = 1000 means that the variable is assigned the value "1000".
Hope that helps!
+ 3
Please include C++ in Relevant Tags 👍