Two Strings -to check if equal

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.
yeah strings !!
http://www.cplusplus.com/reference/string/string/compare/

I really hope this is the stuff you are looking for :)
Thank you so much. This really helped!!!
Topic archived. No new replies allowed.