-2

What is the significance of the .h extension in header files of a C or C++ program?

Acorn
  • 24,970
  • 5
  • 40
  • 69

2 Answers2

1

No significance. It is just a convention for programmers to quickly recognize what is in the file. Standard C++ library headers don't have it.

Robert Andrzejuk
  • 5,076
  • 2
  • 22
  • 31
1

to mark a header file, .h stands for header as much as .cpp stands for C Plus Plus, did I get your question right?

Pierre Ghaly
  • 777
  • 2
  • 7
  • 17