?? figc.7
字號:
#include "apue.h"static void f1(void), f2(void);intmain(void){ f1(); f2(); _exit(0);}static voidf1(void){ pid_t pid; if ((pid = vfork()) < 0) err_sys("vfork error"); /* child and parent both return */}static voidf2(void){ char buf[1000]; /* automatic variables */ int i; for (i = 0; i < sizeof(buf); i++) buf[i] = 0;}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -