指针的方法1:
char *pmessage;
pmessage="now is the time";
方法2:
char *pmessage="now is the time";
数组的声明:
char amessage【】=“now is the time”;
如果定义的是字符串那么只可以用char类型
指针的方法1:
char *pmessage;
pmessage="now is the time";
方法2:
char *pmessage="now is the time";
数组的声明:
char amessage【】=“now is the time”;
如果定义的是字符串那么只可以用char类型