1. What does the following code print:
char* s1 = "ABCDE"; char* s2 = "ABCE";
if (strcmp(s1,s2) endl; else cout << s1 << " >= " endl;
2. What does the following code print:
char* s1 = "ABCDE"; char* s2 = "";
if (strcmp(s1,s2) endl; else cout << s1 << " >= " endl;