码迷,mamicode.com
首页 > 其他好文 > 详细

assert

时间:2014-06-12 09:00:40      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   http   

bubuko.com,布布扣
#define NDEBUG
#include <assert.h>
#include <stdio.h>

int main(int argc, char *argv[])
{
    assert(0);
    printf("%s\n", argv[argc - 1]);//路径到.exe
    printf("%s\n", __FILE__);//路径到.c
    printf("%d\n", __LINE__);//__LINE__所在的行数
    return 0;
}
bubuko.com,布布扣

 

assert,布布扣,bubuko.com

assert

标签:style   class   blog   code   java   http   

原文地址:http://www.cnblogs.com/Susake/p/3782568.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!