问题 I want to print all the possible solutions to LCS problem. The two strings abcbdab and bdcaba should print following 3 strings: bdab,bcba,bcab. C is the global matrix table which takes values according to algorithm and m, n are the length of the sequences a, b. But The output is something unexpected. #include<stdio.h> #include<conio.h> int co=0,m=0,n=0,c[10][10]; char a[10],b[10]; void main() { int i,j; clrscr(); printf("Enter Two strings: "); scanf("%s",a); scanf("%s",b); m=strlen(a); n