Values a and b have same output:
int a = 0xEFEFEFEF;
long b = 0xEFEFEFEF;
cout << a << endl << b << endl;
I heard that a long type has more processing time to calculation because long should be cast to int for calculation. Is int really faster then long?