(华中科技大学机试题)给定任意俩组字符串S1 和S2,请编程输出他们间的最大相同子串。例如:S1=12abc78,S2=7bc2,则输出为:bc
#include <stdio.h> #include <string.h> void LargestCommonSubStr(char *str1,char *str2); int main() { char str1[128] = {'