Linux
文章平均质量分 70
lgw150
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Login as Root in Ubuntu 12.04
Want to enable root logon in Ubuntu 12.04? Well, even though it’s not recommended, it’s still possible to login with the root or administrator account, and this brief tutorial is going to show you how原创 2013-01-30 20:04:20 · 716 阅读 · 0 评论 -
macro function sample
#include "stdlib.h" #include "stdio.h" #define MACRO_FUN(a) \ ({ \ printf("a=%x\n",a); \ }) int main() { MACRO_FUN(15); return 0; } the output: a=f原创 2013-02-25 11:57:23 · 470 阅读 · 0 评论
分享