Computer Science, asked by aseemalatheef, 9 months ago

Write a program to get two strings as input from the user. The program should check if both the strings contains the same letters.

Note: Both the string values will be in lowercase.

Answers

Answered by bbgdu
0

let me put this in best way... pseudo ans...

Explanation:

you have built in string functions (like strcat(str1,str2) in c/c++) that compare strings

or

you can also do for every index compare both characters in both strings

hope this helps :-)

Similar questions