1// This will define a type named TYPE representing an array of 4 doubles
2typedef double TYPE[4];
1#include <string>
2#include <typeinfo>
3#include <iostream>
4
5using namespace std;
6
7int main(int argc, char** argv) {
8 string str = "string";
9 cout << typeid(str).name();
10 return 0;
11}