Am 01.03.2011, 23:33 Uhr, schrieb bearophile <[email protected]>:
Do you know why DMD doesn't give a compilation error here?
import core.stdc.stdio: sscanf;
immutable int value = 5;
void main() {
sscanf("10".ptr, "%d".ptr, &value);
}
What's the D signature of sscanf?
