#include <stdlib.h>
int wctomb(char *s, wchar_t wchar);
wctomb() converts wchar to a multi-byte character, stores that character in s, and returns the length of s in bytes.
The length of s in bytes after the conversion.
wcstombs()