Anagram Checking Between Two Strings In C
Hello guys! This is a code in C to check if two strings are anagrams. If anyone has got a better solution, you are welcome to give the solution here. #include void anagrams(char A[10], char B[10]) { int lenA, lenB; int x, y, ted, [...]