What's the difference between cstdlib and stdlib.h?

Free Wildebeest picture Free Wildebeest · May 25, 2010 · Viewed 32.3k times · Source

When writing C++ code is there any difference between:

#include <cstdlib>

and

#include <stdlib.h>

other than the former being mostly contained within the std:: namespace?

Is there any reason other than coding standards and style to use one over the other?

Answer

Brendan Long picture Brendan Long · May 25, 2010

The first one is a C++ header and the second is a C header. Since the first uses a namespace, that would seem to be preferable.