'Learning CPP' programmer here. So, bear with me.
First off :
STRCAT :
http://www.cplusplus.com/reference/clibrary/cstring/strcat/
When clearly the definition says :
char * strcat ( char * destination, const char * source );
Why'd they use char str[80] in the example???
What types can be used?