字符串

在这里插入图片描述
以下是一个简单的例子:

#include 

void main()
{
     
char b[10]="helloe""qq";
printf("b=%s",b);
//return 0;
}

运行结果如下:
在这里插入图片描述
指针和数组的选择

char *s="hello world";
char s[]="hello world"

创建字符串用数组,对字符串做处理用指针。

你可能感兴趣的:(c语言)