如何判断一段程序是由C编译程序还是由C++编译程序编译的

#include <iostream>
using namespace std;
#ifdef _cplusplus 
char* CODE = "c++";

#else 
char* CODE = "c";
#endif


void main()
{
char *p = "hello !";
cout<<CODE<<endl;
system("pause");
}

你可能感兴趣的:(如何判断一段程序是由C编译程序还是由C++编译程序编译的)