摘要: 1.字符串相关 C语言中没有字符串,用 字符数组 创造出字符串出来。 # include <stdio.h> # include <string.h> int main(int argc, char const *argv[]) { // 字符类型,用1个字节来存储。 char v1 = 'w'; 阅读全文
posted @ 2024-02-04 21:51 Tony_xiao 阅读(42) 评论(0) 推荐(0) 编辑