0
Header and cpp files in C++
What is the difference between Header and cpp files in C++
1 Answer
+ 2
Generally, you put your definitions in the header and your implementations in the cpp files. This makes for cleaner code.
What is the difference between Header and cpp files in C++