About 76,500 results
Open links in new tab
  1. string - C++ Users

    If argument n is specified (4), the first n characters in the array are used as the comparing string. Otherwise (3), a null-terminated sequence is expected: the length of the sequence with the …

  2. strcmp - C++ Users

    This function starts comparing the first character of each string. If they are equal to each other, it continues with the following pairs until the characters differ or until a terminating null-character …

  3. wcscmp - C++ Users

    This function starts comparing the first character of each string. If they are equal to each other, it continues with the following pairs until the characters differ or until a terminating null wide …

  4. basic_string - C++ Users

    This string is compared to a comparing string, which is determined by the other arguments passed to the function. The sequences are compared using traits_type::compare.

  5. memcmp - C++ Users

    Compare two blocks of memory Compares the first num bytes of the block of memory pointed by ptr1 to the first num bytes pointed by ptr2, returning zero if they all match or a value different …

  6. wstring - C++ Users

    compare Compare strings (public member function) Member constants Note: The references to the members of its basic template (basic_string) are linked here. npos Maximum value of …

  7. relational operators (string) - C++ Users

    Relational operators for string Performs the appropriate comparison operation between the string objects lhs and rhs. The functions use string::compare for the comparison. These operators …

  8. strncmp - C++ Users

    This function starts comparing the first character of each string. If they are equal to each other, it continues with the following pairs until the characters differ, until a terminating null-character is …

  9. atomic_compare_exchange_strong - C++ Users

    The function always accesses the contained value to read it, and -if the comparison is true- it then also replaces it. But the entire operation is atomic: the value cannot be modified by other …

  10. std:: lexicographical_compare - C++ Users

    A lexicographical comparison is the kind of comparison generally used to sort words alphabetically in dictionaries; It involves comparing sequentially the elements that have the …