C++ memcpy()
Copies block of memory from source to destination
C++ memset()
copies character to beginning of string n times
C++ strcat()
appends copy of string to end of another string
C++ strchr()
searches for character in string
C++ strcmp()
Compare two strings
C++ strcpy()
Copies character string from source to destination
C++ strlen()
Returns length of given string
C++ strncmp()
compares two strings lexographically
C++ strncpy()
copies character string from source to destination
C++ strstr()
finds first occurrence of a substring in string
C++ strtok()
Split string based on delimiter