C语言字符串数组赋值

数组赋值有两种方式
一种是在定义是赋值:

char book[] = {"the story of sitone"};
char author = "曹雪芹";//去掉花括号也可以
char k[6] = {'h','e','l','l','o','\0'};

定义后在赋值就一般用strcpy,不能用=赋值,C语言并没有提供可以直接操作字符串的运算符;“=”可以用于其他数据类型的赋值,但是不可以直接给字符串赋值。但可以用赋值。

#include<stdio.h>
#include<string.h>

int main()
{
   char book[50];
   char *author;
   
   strcpy(book,"三体");
   //book = "三体";//这样的赋值是错误的。
   author = "liucixin";//这样赋值可以
   
   printf("%s\n",book);
   printf("%s\n",author);
   
   return 0;
}
    原文作者:cambriannn
    原文地址: https://blog.csdn.net/weixin_41308065/article/details/100811186
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞