Hey using this code I always end up with the number 1, why is this.
#include <iostream>
using namespace std;
int y;
int x = (y + 1);
int main()
{
cin >> y;
cout << x << endl;
return 0;
}
|
Hey using this code I always end up with the number 1, why is this.
|
|||||||
|
|
The line:
doesn't auto-magically tie the value of
|
|||||||||||
|
|
because at initialisation y probably is set to 0 and thus x = 0 + 1 = 1; you have to use a function for obtaining your desired behaviour like
|
||||
|
|
|
This is not how the C++ works at all. You defined the
|
|||
|
|