+ 2
Why we need .h files because we have classes? 😅
Class and header file are doing the same thing, right? So what is the difference between them 🤔
4 Respostas
+ 10
No, they don't have a similar purpose.
Header files are used to store declarations in one location and then import them wherever we need them.
Classes are used to create and manage new objects. it is the basic ingredient of OOP.
+ 1
Headers can contain classes, right?
+ 1
Martin Taylor Thanks a lot for the explanation.
0
Ohh now I am clear bro.