Answers for "c++ program to find the size of data types"

C++
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