注册 登录
电子工程世界-论坛 返回首页 EEWORLD首页 频道 EE大学堂 下载中心 Datasheet 专题
chich的个人空间 https://home.eeworld.com.cn/space-uid-88198.html [收藏] [复制] [分享] [RSS]
日志

warning: unknown conversion type character ';' in format [-Wformat]|的警告

已有 5409 次阅读2012-12-26 10:18 |个人分类:c|

在code::blocks 下运行如下代码
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
    int a = 100;
    printf("dec = %d; octal = %#0; hex = %#0x\n",a,a,a);
    printf("dec = %d; octal = %0; hex = %0x\n",a,a,a);
    return 0;
}
 
出现 OC\main.c|7|warning: unknown conversion type character ';' in format [-Wformat]|的警告
 
原来我把octal = %#0 和 octal = %0 的o(欧)输成0(零)了,好低级的错误!!!
评论 (0 个评论)

facelist doodle 涂鸦板

您需要登录后才可以评论 登录 | 注册

热门文章