Code Snippets C

//Declaration: int mblen(const char *str, size_t size);
#include
#include
int main(void){
char *md = "rntsoft.com";
printf("%d", mblen(md, 2));
}
/*
1*/