Answers for "how to know datatype of something in c++"

C++
0

how to know datatype of something in c++

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

Code answers related to "how to know datatype of something in c++"

Browse Popular Code Answers by Language