#include #include int main() { // The following two lines copy two string literals, Amelie\0 and Anne\0 to two character arrays str1 and str2, respectively. char str1[] = "Amelie"; char str2[] = "Anne"; printf("%d\n", strcmp(str1, str2)); return 0; } /* Output: * -1 */