#include <string.h>
int strcmp(const char *p, const char *q);
strcmp() compares the two strings, using the character ordering given by the ASCII character set.
A negative integer, if p is smaller than q; zero, if both strings are equal; or a positive integer if p is greater than q.
strcoll(), and