what’s the difference between .cxx dan .cpp file ?

They don’t have any difference, and both are c++ implementation files. .cpp files are often used in Windows and Linux, while some Unix programs often use .cxx files.

5 thoughts on “what’s the difference between .cxx dan .cpp file ?”

  1. it is just some code convention, or file naming convention, .c files contain only C source codes (no C++ code here, like class, template, etc..) while .cpp will contain C++ codes, and .cxx files are mixed of C and C++ codes

    another conventions are .h, .hpp and .hxx

Leave a Reply to Brian Cancel reply

Your email address will not be published. Required fields are marked *