bool c = "zfff"<"af";
bool c = strcmp("zfff", "af");
1234
bool c = strcmp("zfff", "af"); // comparing strings bool d = std::string("zfff") < std::string("af"); // comparing strings bool J = ("zfff" < "af"); // comparing addresses - J for Java, get it? Ha ha