串就是字符串的意思,
串(string)是由零个或多个字符组成的有限序列,
又名叫字符串,
那么定长串顾名思义就是对固定长度的字符串进行操作。
定长串的操作同字符串一样,
只是应该注意串长,
防止越界访问导致莫名其妙的错误。
#include <iostream> using namespace std; #define MaxStrSize 256 typedef struct mystring { char str[MaxStrSize]; int len; } MyString; //求串的长度 int StrLength(MyString &S) { int i=0; while(S.str[i]!='