数据结构之字符串插入操作

/* 字符串中插入个别字符 */ #include<stdio.h> #include<stdlib.h> #include<string.h> //宏定义 #define N 50 //插入操作 void insert(char*,int,char); //打印 void print(char*); void main() { char s[N]; char c; int index;
相关文章
相关标签/搜索