摘要: 1 第一章 C标准库中几个常用的IO函数 int puts(void *str): 从str中提取字符直到遇到第一个'\0'为止,将这些字符串加上'\n'后发送给stdout。 int main(void) { char input[100]; input[0] = 'a'; input[1] = 阅读全文
posted @ 2023-04-24 17:39 l1nux_kernel 阅读(26) 评论(0) 推荐(0)