Hi guys, I want to ask
Is it possible to compile the following source code to a 64-bit program on a 32-bit system?
I have MS VS2005 + Dev-C++ 4.9.9.2 installed on my 32-bit windows xp professional.
#include <iostream>
using namespace std;int main()
{
long long i=1000000000000; // this number overflows 32-bit integer
cout<<i<<endl;
return 0;
}