| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 330 人关注过本帖
标题:使用预定义宏时出错了,求助
取消只看楼主 加入收藏
adyw2565876
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2014-6-16
结帖率:0
收藏
已结贴  问题点数:10 回复次数:0 
使用预定义宏时出错了,求助
程序代码:
// predef.c -- 预定义标识符
#include <stdio.h>
void why_me ();
int main ()
{
    printf("The file is %s.\n",__FILE__);
    printf("The date is %s.\n",__DATE__);
    printf("The time is %s.\n",__TIME__);
    printf("The version is %ld.\n",__STDC_HOSTED__);
    printf("The is line %d.\n",__LINE__);
    printf("The function is %s.\n",__func__);
    why_me ();

    return 0;


}

void why_me()
{
    //printf("This function is %s\n",__func__);
    printf("This is line %d.\n",__LINE__);
}

用vs2012编译时出现了如下图这样的问题,是编译器不支持__func__和__STDC_HOSTED__吗?要怎么解决?

图片附件: 游客没有浏览图片的权限,请 登录注册
搜索更多相关主题的帖子: include include 
2014-06-16 18:14
快速回复:使用预定义宏时出错了,求助
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017508 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved