+ 2
Did the int have 2 bits size or 4 bits
2 Respostas
+ 6
"Depending on the computer architecture" ¹ not the compiler, and why all the cloak and dagger?! 8D
Make a query like so
cout << sizeof(int); // usually 4 bytes on a 32-bit machine
_____
¹ https://en.cppreference.com/w/cpp/language/sizeof
+ 2
Thanks!