#define _CRT_SECURE_NO_WARNINGS//强行去掉安全检查
#include<stdio.h>
#include<stdlib.h>
#include<Windows.h>
//c语言没有字符串类型,通过字符数组模拟字符串
//c语言字符串,以字符'\0'做字符结束标志
void main1()
{
//不指定长度,没有0结束符,有多少个元素就有多长
char buf[] = { 'a','b','c',/*'\0' */};
//这样定义字符数组,会乱码
printf("buf=%s\n", buf);
//指定长度,后面没有赋值的元素,自动补0
char buf2[100]= { 'a','b','c' };
printf("buf2=%s\n", buf2);
//所有元素赋值为0
char buf3 = { 0 };
//char bu4f[2]={ 'a','b','c' };//数组越界
char buf5[50] = { '1','a','b','0','7' };
printf("buf5=%s\n", buf5);
char buf6[50] = { '1','a','b',0,'7' };
printf("buf6=%s\n", buf6);
char buf7[50] = { '1','a','b', '\0 ','7' };
printf("buf6=%s\n", buf7);
//正确的初始化方法
//使用字符串初始化 常用
char buf8[] = "chenqi777";
//strlen :测字符串长度,不包括字符'\0'
//sizeof:测字符数组大小,包括字符'\0'
printf("strlen =%d,sizeof=%d\n", strlen(buf8), sizeof(buf8));
//如果定义的字符数组为100个
//那么size
char buf9[100] = "chenqi888";
printf("strlen2 =%d,sizeof2=%d\n", strlen(buf9), sizeof(buf9));
//重要知识点:很少用
printf("test");
char str[] = "\0129";
//"\n9" 跟这个一样 相当于\n
printf("%s\n", str);
system("pause");
}
void main()
{
//定义一个常量字符数组
//不能修改,
//修改容易发生错误
char buf[] = "chenqi-jiayou";
int n = strlen(buf);
//[]方式
for (int i = 0; i < n; i++)
{
printf("%c", buf[i]);
}
printf("\n");
//指针方法
//数组名字,数组首元素地址
char *str = buf;
for (int i = 0; i < n; i++)
{
printf("%c", str[i]);
}
printf("\n");
for (int i = 0; i < n; i++)
{
printf("%c", *(str+i));
}
printf("\n");
for (int i = 0; i < n; i++)
{
printf("%c", *(buf + i));
}
//buf 和str完全等价吗?
//str++;
//buf++
//buf只是一个常量,不能修改
system("pause");
}
#include<stdio.h>
#include<stdlib.h>
#include<Windows.h>
//c语言没有字符串类型,通过字符数组模拟字符串
//c语言字符串,以字符'\0'做字符结束标志
void main1()
{
//不指定长度,没有0结束符,有多少个元素就有多长
char buf[] = { 'a','b','c',/*'\0' */};
//这样定义字符数组,会乱码
printf("buf=%s\n", buf);
//指定长度,后面没有赋值的元素,自动补0
char buf2[100]= { 'a','b','c' };
printf("buf2=%s\n", buf2);
//所有元素赋值为0
char buf3 = { 0 };
//char bu4f[2]={ 'a','b','c' };//数组越界
char buf5[50] = { '1','a','b','0','7' };
printf("buf5=%s\n", buf5);
char buf6[50] = { '1','a','b',0,'7' };
printf("buf6=%s\n", buf6);
char buf7[50] = { '1','a','b', '\0 ','7' };
printf("buf6=%s\n", buf7);
//正确的初始化方法
//使用字符串初始化 常用
char buf8[] = "chenqi777";
//strlen :测字符串长度,不包括字符'\0'
//sizeof:测字符数组大小,包括字符'\0'
printf("strlen =%d,sizeof=%d\n", strlen(buf8), sizeof(buf8));
//如果定义的字符数组为100个
//那么size
char buf9[100] = "chenqi888";
printf("strlen2 =%d,sizeof2=%d\n", strlen(buf9), sizeof(buf9));
//重要知识点:很少用
printf("test");
char str[] = "\0129";
//"\n9" 跟这个一样 相当于\n
printf("%s\n", str);
system("pause");
}
void main()
{
//定义一个常量字符数组
//不能修改,
//修改容易发生错误
char buf[] = "chenqi-jiayou";
int n = strlen(buf);
//[]方式
for (int i = 0; i < n; i++)
{
printf("%c", buf[i]);
}
printf("\n");
//指针方法
//数组名字,数组首元素地址
char *str = buf;
for (int i = 0; i < n; i++)
{
printf("%c", str[i]);
}
printf("\n");
for (int i = 0; i < n; i++)
{
printf("%c", *(str+i));
}
printf("\n");
for (int i = 0; i < n; i++)
{
printf("%c", *(buf + i));
}
//buf 和str完全等价吗?
//str++;
//buf++
//buf只是一个常量,不能修改
system("pause");
}