hello,
how to check if two strings contain equal characters?
one string is to be taken during runtime and the other string is static.
please help me with this as soon as possible.
thanks in advance!!
Last edited on
if (a == b)
Last edited on
You mean strings, right? Not pointers to chars, or an array of char? C++ strings.
Thank you so much. This really helped!!!