摘要:
#include ssize_t read(int fd, void *buf, size_t count);DESCRIPTION read() attempts to read up to count bytes from file descriptor fd into the buffer... 阅读全文
摘要:
1、switch语句: 编译错误case label does not reduce to an integer constant在case中肯定不能进行条件判断.用嵌套的ifelse就解决了switch语句的格式为switch(表达式){case常量表达式1:语句1case常量表达式2:语句2^^... 阅读全文