现在的位置: 首页 > 综合 > 正文

测试是c\c++编译器

2013年03月26日 ⁄ 综合 ⁄ 共 109字 ⁄ 字号 评论关闭
#include <stdio.h>
int main(int argc,char *argv[])
{
#ifdef __cplusplus
printf("c++");
#else
printf("c");
#endif
return 0;
}

抱歉!评论已关闭.