...
Code Block | ||
---|---|---|
| ||
/* file_b.c source file */ int func(int, int, int); func(1, 2, 3); |
VOID DCL14-C. Do not make assumptions about the order of global variable initialization across translation units, shows how to use header files to accomplish this same goal in a more maintainable fashion.
...