You can either have software quality or you can have pointer arithmetic, but you cannot have both at the same time. Bertrand Meyer
Check whether two given strings are an anagram of each other or not.
Write a program to check anagram for given two strings. An anagram of a string is another string that contains same characters, only the order of characters can be different
Example:-
"silent" which can be rearranged to "listen". The two can be used in the phrase, "Think about it, SILENT and LISTEN are spelled with the same letters"
Check anagram for 'silent' and 'listen' :true Check anagram for 'test1' and 'test2' :false
Comments