1、c语言中如何创建、存储、输出字符串、输出字符串的大小、字符串的长度
#include <stdio.h> #include <string.h> int main(void) { char name[128]; //使用数组存储字符串 int size, len; printf("please input your first name: "); scanf("%s", name); //字符串的转换说明是%s,获取字符串数组变量的地址时,不需要使用取址运算符& printf("your first name is: %s. ", name); size = sizeof(name); //获取字符串的大小使用sizeof()运算符,sizeof()运算符的但是是tyte。 len = strlen(name); // 获取字符串的长度使用strlen()函数 printf("the storage size of your first name is: %d. ", size); printf("the length of your first name is: %d. ", len); return 0; }