CODES
some learning from problems.
CODES
some learning from problems.
Showing posts with label
Anagram
.
Show all posts
Showing posts with label
Anagram
.
Show all posts
Wednesday, 4 July 2012
WAP to return all anagrams from the array of strings. (all possible permutation of a String)
›
#include<stdio.h> #include<string.h> int anagram(char S[10],int l,char C[10]) { char D[10]; int j,k,m=strlen(C),i; ...
›
Home
View web version