Is there an equivalent C++ function for every C function?

Or sometimes we should use C function in C++ code?

For example memset() is a C function but it seems that it much simple to set charset[]
to '0' with it.

Code:
char charset[256];
memset(charset,0,sizeof(charset));