Oct 6, 2017 at 10:44am
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 Oct 6, 2017 at 10:45am
Oct 6, 2017 at 11:18am
if (a == b)
Last edited on Oct 6, 2017 at 11:18am
Oct 6, 2017 at 11:43am
You mean strings, right? Not pointers to chars, or an array of char? C++ strings.
Oct 7, 2017 at 1:38pm
Thank you so much. This really helped!!!