摘要: #include <stdio.h> #include <sys/types.h> #include <unistd.h> int main(void) { int i; for(i=0; i<2; i++) { fork(); printf("-"); } return 0; }修改printf( 阅读全文
posted @ 2017-06-25 20:39 种树人 阅读(121) 评论(0) 推荐(0) 编辑