Answers for "size of the data types in c++"

C++
10

Data Types in C++

Data types in c++
	Built-in                User Defined            Derived
    ----------              -----------             ------------
    void, int,			    structure,              array,
	char, float,		    union,					function,
    double, bool,		    enum,					pointer,
    long long			    class,					reference
    Wide Character		    typedef
Posted by: Guest on April-30-2021
0

how to find data size in c++

cout << "Size of char: " << sizeof(variable) << " byte(s)" << endl;
Posted by: Guest on May-30-2021

Browse Popular Code Answers by Language