Header: string.h
Syntax:
extern int memcmp
(
const void *string_1,
const void *string_2,
size_t n
);
Purpose: This function compares the first n of string_1 to the first n characters of string_2. Returns an int greater than, equal to, or less than zero.
|
|
|