标题:使用预定义宏时出错了,求助
只看楼主
adyw2565876
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2014-6-16
结帖率:0
已结贴  问题点数:10 回复次数:1 
使用预定义宏时出错了,求助
程序代码:
// 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
pauljames
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
等 级:千里冰封
威 望:9
帖 子:1555
专家分:10000
注 册:2011-5-8
得分:10 
_func_改为_FUNC_试试,既然是宏,一般用大写定义

经常不在线不能及时回复短消息,如有c/单片机/运动控制/数据采集等方面的项目难题可加qq1921826084。
2014-06-16 18:48



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-433007-1-1.html




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

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