求c语言代码。怎么给一个字符串数组里每个字符间插入逗号,存到另一个数组并输出该数组?

日期:2016-11-10 12:04:49 人气:1

求c语言代码。怎么给一个字符串数组里每个字符间插入逗号,存到另一个数组并输出该数组?

#include #include #include "string.h"int main(int argc, char *argv[]) { int i,j=0,len,n; //可以不用n char str_input[1000]={"\0"},str_output[10000]={"\0"}; printf("请问您要输入多少个字符?\n"); //其实不用问要
    A+
热门评论