Answers for "size of datatype in cpp"

C++
0

how to know datatype of something in c++

int k;
cout << typeid(k).name() << endl;
Posted by: Guest on January-10-2021

Browse Popular Code Answers by Language