Answers for "how to check type of a data type in cpp"

C++
6

how to check datatype of a variable in c++

#include <typeinfo>
...
cout << typeid(variable).name() << endl;
Posted by: Guest on May-29-2020
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 check type of a data type in cpp"

Browse Popular Code Answers by Language