+ 2
Did the int have 2 bits size or 4 bits
2 Answers
+ 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!