InterviewSolution
Saved Bookmarks
| 1. |
In Header Files Whether Functions Are Declared Or Defined? |
|
Answer» Functions are DECLARED within header file. That is FUNCTION prototypes exist in a header file,not function bodies. They are DEFINED in library (LIB). Functions are declared within header file. That is function prototypes exist in a header file,not function bodies. They are defined in library (lib). |
|