| High Integrity CPP Rule 17.1 | Use Standard C++ Library headers defined by the language standard and not outdated .h headers. For example, use <iostream> and not <iostream.h>, <cstdio> and not <stdio.h>. |
| (QA C++ 1014) |
| Justification |
ISO C++ defines the standard implemention of library components. Programmars should use these versions of the library rather than vendor-specific or C library versions. |