需要准备的材料分别有:电脑、C语言编译器。
1、首先,打开C语言编译器,新建一个初始.cpp文件,例如:test.cpp。
2、在test.cpp文件中,输入C语言代码: char a[10] = "hello"; char b[] = "hello"; char *c = "hello"; printf("%s%s%s", a, b, c);
3、编译器运行test.cpp文件,此时通过所有3种定义字符串的方法成功定义被输出。
需要准备的材料分别有:电脑、C语言编译器。
1、首先,打开C语言编译器,新建一个初始.cpp文件,例如:test.cpp。
2、在test.cpp文件中,输入C语言代码: char a[10] = "hello"; char b[] = "hello"; char *c = "hello"; printf("%s%s%s", a, b, c);
3、编译器运行test.cpp文件,此时通过所有3种定义字符串的方法成功定义被输出。