What is Function call?

Function call means calling of a function to execute the statements of the function. A function call contains the name of function and the arguments that are sent to the function. When we call a function control is transferred to that particular function, executes the statements within that function and returns back after executing that function.

Eg:
Void add (int c, int d)
{
Printf (ā€œ%dā€, c+d);
}
Void main ()
{
Int a=12,b=10;
Add (a,b); //Funtion call
}

More Questions

Leave a Reply

Word Verfication * Time limit is exhausted. Please reload CAPTCHA.