...
Code Block | ||
---|---|---|
| ||
char *CMUfullname = "Carnegie Mellon University";
char *school;
/* Get school from user input and validate */
if (strcmp(school, "CMU")) {
school = CMUfullname;
}
|
...
Code Block | ||
---|---|---|
| ||
char const *CMUfullname = "Carnegie Mellon University";
char *school;
/* Get school from user input and validate */
if (strcmp(school, "CMU")) {
school = CMUfullname;
}
|
...