I wrote a real simple hello world application and defined one variable, however the address of variable(&i) is different every time I start the application. May I know the reason for this?
int i = 23444;
int b = 0;
std::cout << &i;
std::cout << "Hello World!\n";
std::cin >> b;
std::cout << i;