COMBINATION OF TWO STRINGS USING ARRAY /* * C Program to Display Every Possible Combination of Two Words * from the given 2 String without Displaying Repeated Combinations */ #include <stdio.h> #include <string.h> void main() { char str1[50], str2[50], str3[100][100], str4[100][100]; char str5[200][200], temp[200], str[200][200]; int i, j = 0, k = 0, l = 0, m = 0, index = 0, n = 0; printf("Enter first string\n"); scanf("%[^\n]s", str1); printf("Enter second string\n"); scanf(" %[^\n]s", str2); /* code to convert string in 2-D array */ for (i = 0;str1[i] != '\0';i++) { if (str1[i] = = ' ') { str3[j][k] = '\0'; ...
Comments
Post a Comment