On 2015-03-21 at 16:05, Ivan Kazmenko wrote:
Generate a 100000-character string
[...]
Try to copy it with D scanf and printf:
-----
import std.stdio;
void main () {
     char [100000] a;
     scanf ("%s", a.ptr);
     printf ("%s\n", a.ptr);
}
-----

Only 32767 first characters of the string are actually copied.

In what universe?! Which OS, compiler and architecture?

Reply via email to