Code Snippets C

//Declaration: int mbtowc(wchar_t *out, const char *in, size_t size);
#include
#include
int main(void){
char *mb = "Clementine";
char str[2000];
mbtowc(str, mb, 2);
printf("%s",str);
}
/*
a*/