摘要: 1、测试数据 [root@centos7 test]# cat a.txt 1 2 3 4 5 6 7 8 9 2、 数字的作用相当于print? [root@centos7 test]# cat a.txt 1 2 3 4 5 6 7 8 9 [root@centos7 test]# awk '{ 阅读全文
posted @ 2021-07-29 12:41 小鲨鱼2018 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 1、c语言中如何创建、存储、输出字符串、输出字符串的大小、字符串的长度 #include <stdio.h> #include <string.h> int main(void) { char name[128]; //使用数组存储字符串 int size, len; printf("please 阅读全文
posted @ 2021-07-29 00:26 小鲨鱼2018 阅读(977) 评论(0) 推荐(0) 编辑