sizeof operator in c 2b 2b

Solutions on MaxInterview for sizeof operator in c 2b 2b by the best coders in the world

showing results for - "sizeof operator in c 2b 2b"
Elea
11 Jan 2018
1cout << "char: " << sizeof(char) << endl;
2cout << "int: " << sizeof(int) << endl;
3cout << "float: " << sizeof(float) << endl;
4cout << "double: " << sizeof(double) << endl;