How to find the size of char, int, float and double in C++

1 Answer

0 votes
#include <iostream>

int main() {
    std::cout << "Size of char: " << sizeof(char) << " byte" << "\n";
    std::cout << "Size of int: " << sizeof(int) << " bytes" << "\n";
    std::cout << "Size of float: " << sizeof(float) << " bytes" << "\n";
    std::cout << "Size of double: " << sizeof(double) << " bytes";
     
    return 0;
}
 
 
 
 
/*
 
run:
 
Size of char: 1 byte
Size of int: 4 bytes
Size of float: 4 bytes
Size of double: 8 bytes
 
*/

 



answered Jan 14, 2021 by avibootz

Related questions

1 answer 223 views
1 answer 171 views
1 answer 196 views
...