cpp get type of variable code example

Example 1: how to check datatype of a variable in c++

#include <typeinfo>
...
cout << typeid(variable).name() << endl;

Example 2: cpp get data type

#include <typeinfo>
...
cout << typeid(variable).name() << endl;

Example 3: print data type of a variable in c++

int x = 5;
typeid(x).name();
//output: i
// i stands for int

Example 4: how to check type in c++

#include <typeinfo>
#include <iostream>

class someClass { };

int main(int argc, char* argv[]) {
    int a;
    someClass b;
    std::cout<<"a is of type: "<<typeid(a).name()<<std::endl; 
  	// Output 'a is of type int'
    std::cout<<"b is of type: "<<typeid(b).name()<<std::endl; 
  	// Output 'b is of type someClass'
    return 0;
  	// on the online compiler it comes as 'i' for int and 'c' for char
}

Tags:

Cpp Example