我是
靠谱客的博主
迷人睫毛膏,最近开发中收集的这篇文章主要介绍
串的基本操作,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
#include<stdio.h>
#include<stdlib.h>
#define MAXSIZE 100
typedef struct string //顺序串的结构体
{
char ch[MAXSIZE + 1];
int length;
}string;
int StringAssign(string *S, char chs[]) //生成一个其值等于字符串常量chs的串S
{
int i = 0;
while (chs[i] != '