int main()
{ int BOSS = -2020;
cout<<BOSS;
return 0;
}
why is the correct output shown as -2020 2^64 and not simply -2020
int main()
{ int BOSS = -2020;
cout<<BOSS;
return 0;
}
why is the correct output shown as -2020 2^64 and not simply -2020