10. Comparison with Java
keywords operators "packages" classes "things"
C 44 49 29 - 990
Java 53 44 202 3777 43749
Counting the standard C library headers as "packages".
"things" in the standard C library are macros, functions, types, etc.
"things" in the standard Java classes are methods, constants, etc.
Unix/C "packages":
% uname
Linux
% find /usr/include -name '*.h' -print | wc -l
1248
%
---
% uname
SunOS
% find /usr/include -name '*.h' -print | wc -l
5677
%