#include<stdio.h>
#include<string.h> //字符串操作头文件
int main(void)
{
char s[7] = "hemaye"; //C语言的字符串,就是字符数组
char s3[] = "gege";
printf("%s
", s); //%s输出字符串
for(int i = 0; i < 5; i++)
{
//4个长度的字符串实际长度是5,后面默认跟上‘