C语⾔的编译器类型的判断(34) /************************************************************
Copyright (C), 1998-2006, Rx. Co., Ltd.
FileName: mainApp.cpp
Author: longronglin
Version : 1.0
Date: 2006-10-10
Description:
Function List:
1. int main()
History:
<author> <time> <version > <desc>
longronglin    2006/10/10    1.0      modify xxx .
***********************************************************/
#include <iostream.h>
/*
* 返回1为正确执⾏
* 主函数
*
c语言编译器怎么用?
*/
int main()
{
#ifdef __cplusplus
cout<<"c++";
#else
cout<<"c";
#endif
return (1);
}
Vc的输出为C++。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。