hpp and h files

  • Thread starter Thread starter Abubakar
  • Start date Start date
A

Abubakar

hi,
Just wanna know whats the difference between a *.hpp and *.h files. Seems
like they are writing code in *.hpp and also using it as header file but in
*.h they dont write code, only headers.
 
Abubakar said:
hi,
Just wanna know whats the difference between a *.hpp and *.h files.
Seems like they are writing code in *.hpp and also using it as header
file but in
*.h they dont write code, only headers.

No difference - just one programmer's preference for file naming convention
versus another.

-cd
 
Hi,

The hpp stands for C Plus Plus headers = H P P
The h stands for normal C Headers = H

..CPP = > .HPP
..C => .H

It is only a naming convention and has no effect on code compilation.

Thanks,
Mohamed
 
Back
Top