C语言试题大全一
/* 用递归做 */
void deletesubstr(char* str1, const char* str2)
{
}
2.雅虎笔试题(字符串操作)
给定字符串A和B,输出A和B中的最大公共子串。
比如A="aocdfe" B="pmcdfa" 则输出"cdf"
答案:
//Author: azhen
#include
#include
#include
char *commanstring(char shortstring[], char longstring[])
{
}
评论