CPrimerPlus学习(十一):字符和字符串函数/编程练习
表示字符串的几种方式// strings1.c#include <stdio.h>#define MSG "I am a symbolic string constant."#define MAXLENGTH 81int main(void){ char words[MAXLENGTH] = "I am a string in an array."; const char * pt1 = "Something is