java stream change array type code example
Example 1: c++ get type name of object
#include <iostream>
int main() {
int myNum;
std::cout << typeid(myNum).name();
return 0;
}
Example 2: how to print string data type in c++
printf("%s\n",someString.c_str());