黄一文的博客
他的个人主页 他的博客
黄一文 2009年08月03日 星期一 17:12 | 1695次浏览 | 6条评论
//gcc -Ddbg=\"hello_abc\" dpara_test.c #include <stdio.h> int main(void) { printf("-D is "dbg" \n"); return 0; } --------- 就想问: printf("-D is "dbg" \n"); 双引号里面的双引号会被替换? 是标准C里面的吗?一直没见过这样的写法,今天看到了。
我的评论:
匿名身份
发表评论
0条回复
4条回复
3条回复
2条回复
1条回复
暂时没有评论
Zeuux © 2024
京ICP备05028076号
回复 邓楠 2009年08月03日 星期一 17:57
$ cat 0.c
#include <stdio.h>
int main()
{
printf("This ""kind ""of ""use ""of ""string ""could ""work!\n");
return 0;
}
$ gcc 0.c
$ ./a.out
This kind of use of string could work!
$