InterviewSolution
Saved Bookmarks
| 1. |
Calls to missing functions in a c program are detected by |
|
Answer» What is CALLED a function ?A function is such a GROUP of STATEMENTS that is able to carryout to perform a task together . A function declare the compiler about the name, return type, and parameters of the GIVEN function. A function definition provides the actual body of the function. The C standard library provides a wide ranges of built-in functions that your PROGRAM can call. Example:-#include |
|