#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;
#define GET_NAME(n) #n
int _tmain(int argc, _TCHAR* argv[])
{
int asdf = 1000;
string str = GET_NAME(asdf);
cout << str << endl;
return 0;
}
#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;
#define GET_NAME(n) #n
int _tmain(int argc, _TCHAR* argv[])
{
int asdf = 1000;
string str = GET_NAME(asdf);
cout << str << endl;
return 0;
}