how to know datatype of something in c 2b 2b

Solutions on MaxInterview for how to know datatype of something in c 2b 2b by the best coders in the world

showing results for - "how to know datatype of something in c 2b 2b"
Marylou
28 Jun 2020
1int k;
2cout << typeid(k).name() << endl;