摘要:
#include <stdio.h>#include <string.h>#include <strings.h>int main(){ char buf[100]; bzero(buf, 100); fgets(buf, 100, stdin); printf("%d", strlen(buf)) 阅读全文
摘要:
ls -l > log.txt (标准输出) ls -l >> log.txt (标准错误输出) 阅读全文