#include "stdafx.h"

#include <typeinfo>

#include <iostream>

using namespace std;


template < typename T > 

void asdf( T arg1) {

   cout << typeid( T ).name() << endl;

}


int _tmain(int argc, _TCHAR* argv[])

{

int aaa= 1000;

asdf(aaa);

return 0;

}


+ Recent posts