[try Beta version]
Not logged in

 
what are *cc and *hh files

Oct 9, 2008 at 6:52am
what are *cc and *hh files and what are the differences between *cpp files
Oct 9, 2008 at 7:54am
There are several filename extensions that are recognised as denoting C++ source code files. .cpp is one of the more common ones with .h for the header files. The .h is for both C and C++, .hh or .hxx are sometimes used for C++ headers files.

.cc, .C, .cxx are just a few alternatives to using .cpp, there are others. They are all just file naming conventions, the code in them does not vary between files with different file extensions.
Topic archived. No new replies allowed.