#include #include int main() { using namespace std; const char *p = "Hallo"; const char *q = " Welt"; cout << strcmp(p, q) << '\n'; }