tags:

views:

243

answers:

2

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?

+3  A: 

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.

Brendan Long
+3  A: 

No, other than the namespace situation, they're essentially identical.

Jerry Coffin