Introduction

The old syntax to include c header files is still valid:

 
#include <stdio.h>

This can be replaced by:

 
#include <cstdio>

The elements of the C library are defined within the std namespace.