https://issues.dlang.org/show_bug.cgi?id=12990

--- Comment #17 from Vladimir Panteleev <[email protected]> ---
Yep:

/////////// test.c ///////////
void main()
{
    char buf[1024];

    SetConsoleCP(65001);
    SetConsoleOutputCP(65001);

    scanf("%s", buf);
    printf("%d", strlen(buf));
}
//////////////////////////////

--

Reply via email to