//
头文件
#include<typeinfo.h> // 没有+c的c++版本
//
#include<iostream>
#include<typeinfo.h>
using namespace std;int main()
{int a;if( typeid(a)==typeid(int) ) cout<<"1"<<endl; else cout<<"0"<<endl;return 0;
}
// 可能的输出:
// 1