Is it bad practice to use a C header instead of its C++ equivalent in C++ (e.g. stdio.h instead of c
- by Maulrus
It seems that a lot of people include example.h instead of cexample in their C++ code. I know that everything in the C++ versions is declared in namespace std, but I'm not aware of any other differences. So why do people use the C headers, and is it okay to do so?