Computer Science, asked by TbiaSamishta, 1 year ago

Calls to missing functions in a c program are detected by

Answers

Answered by aqibkincsem
0

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<stdio.h>The calling function is exacly the one that calls your function.

Similar questions