摘要: 构建字符串,计算字符大小,地址,输出其中的字符串 /* 字符串演示 */ #include <stdio.h> int main() { char str[] = "abcdef"; printf("%d\n", (int)sizeof(str)); printf("%s\n", "xyz"); p 阅读全文
posted @ 2020-03-04 21:52 c语言我的最爱 阅读(815) 评论(0) 推荐(0) 编辑