standard C header file in c++

Go4Expert Member
13Mar2008,15:58   #1
heena.mca's Avatar
How can I include a standard C header file in my C++ code?
TechCake
13Mar2008,16:48   #2
asadullah.ansari's Avatar
Suppose this is your c++ Code

extern "C"
{
#include "cFile.h" // This is C file included in c++ file
}