InterviewSolution
Saved Bookmarks
| 1. |
Which is used to use a function from one source file to another?(a) code(b) declaration(c) prototype(d) variable |
|
Answer» Right option is (c) prototype Explanation: By defining a function’s prototype in another file means, we can inherit all the features from the source function. |
|