The last four statements have another new feature, the "strcat", or string concatenation function.This function simply adds the characters from one string onto the end of another string taking care to adjust the NULL so everything is still all right. In this case, "name1" is copied into "mixed", then two blanks are concatenated to "mixed", and finally "name2" is concatenated to the combination. The result is printed out with both names in the one variable "mixed".
Strings are not difficult and are extremely useful. You should spend some time getting familiar with them before proceeding on to the next topic.
Compile and run this program and observe the results for compliance with this definition
Strings are not difficult and are extremely useful. You should spend some time getting familiar with them before proceeding on to the next topic.
Compile and run this program and observe the results for compliance with this definition

