【c語言】一個字符串,包含n個字符。將此字符串中從第m個字符開始的所有字符複製成爲另外一個字符串。

#include <stdio.h> #include <string.h> int main() { void copystr(char *,char *,int); int m; char str1[20],str2[20]; printf("input string:"); gets(str1); printf("which character that begin to cop
相關文章
相關標籤/搜索