0 votes
in C Plus Plus by
In header files whether functions are declared or defined in C Language?

1 Answer

0 votes
by

Functions are declared within header file. That is function prototypes exist in a header

file,not function bodies. They are defined in library (lib).

...