cpp get data type

Solutions on MaxInterview for cpp get data type by the best coders in the world

showing results for - "cpp get data type"
Rachel
31 Sep 2019
1#include <typeinfo>
2...
3cout << typeid(variable).name() << endl;
4