|
|
|
|
|
by qznc
801 days ago
|
|
Another interesting fact: Write a Hello World program in C++, run the preprocessor on it (g++ -E), then count the lines of the output. I just tried and it shows me 33738 lines (744 lines for C btw). In a language like C++, even Hello World uses like half of all the language features. |
|
With C you just need a definition for printf instead of including stdio. In the old days you'd get by without even defining it at all.