Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
#include
using namespace std; int main() { int myInt; float myFloat; double myDouble; char myChar; cout << sizeof(myInt) << "\n"; // 4 bytes (typically) cout << sizeof(myFloat) << "\n"; // 4 bytes cout << sizeof(myDouble) << "\n"; // 8 bytes cout << sizeof(myChar) << "\n"; // 1 byte return 0; }
4
4
8
1