C-Style Strings Many library functions deal with them #include contains them size_t strlen(const char* str) The length of the string Doesn't count the '\0' char* strcpy(char* dst, const char* src) Copies one string to another Doesn't check if it will fit Plus a lot more...