// greeting - show how to change the behavior of a program depending on // the name it was invoked with #include #include int main(int argc, char *argv[]) { if (strcmp(argv[0], "./goodbye") == 0) { printf("goodbye\n"); } else { printf("hello\n"); } }