Ask HN: What would you tweak in C to make it a nicer language?
If you could tweak C without adding huge new features (like OO or changing paradigm), what would your changes be?
examples: Zero initialized memory. Improved function pointer syntax. Remove '->' and replace with '.'. Array bounds checking. Standard inline assembly syntax. etc. etc. (There are probably a lot I haven't thought about)
12 comments
[ 3.3 ms ] story [ 38.8 ms ] thread1. Standard library support for safe arithmetic (easily capturing overflows, underflows, and so forth).
2. Standard library support for threading and synchronization primitives.
3. Mandated tail-call optimization through pragmas or perhaps just requiring it in the spec.
4. Create explicit and differentiated arithmetic and logical shift left and shift right.
5. Add a standard way of specifying arbitrarily-sized integers (with optimization for the common word sizes).
6. Add destructuring operations.
7. Add anonymous unions.
8. Add switching on strings in switch statements.
9. Add proper UTF8 support.
10. Add a slab allocator to the standard library.
11. Add regexes to the standard library (possible as a language feature).
~
Several of these (7, for example) are being addressed in C11 (if that ever comes out).