c 2b 2b get type name of object

Solutions on MaxInterview for c 2b 2b get type name of object by the best coders in the world

showing results for - "c 2b 2b get type name of object"
Erica
13 Apr 2019
1#include <iostream>
2
3int main() {
4	int myNum;
5  	std::cout << typeid(myNum).name();
6  	return 0;
7}