Anagram in C
Here is the program for anagram in c. Two strings are said to be anagrams if by rearranging the characters of any one string will make both strings equal. Example: “adssfa” and “dsasfa” are anagrams “adsfa” and “sdfac” are not anagrams How to Check two Strings are Anagrams or not? So what we will …
