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[])
{