|
|
|
|
|
by WalterBright
640 days ago
|
|
> A good example is format strings in C The D programming language allows direct use of C printf. However, D checks the arguments against the format specifiers in the format string to make it memory safe. The constant stream of bugs due to format/arguments is now history. There is no reason why C and C++ compilers cannot do this, too. |
|
this pseudo-code as an example:
snprintf(fmt,userinputstring,args); printf(fmt,somearray);