A function contains the statements that make up the function
A function contains the statements that make up the function. definition prototype call expression parameter list A function declares the function and is located in the beginning of the program before all functions that will use it. definition prototype call expression parameter list A function is executed when it is defined prototyped declared called None of these
Solution
Answers:
1)a)definition ,example:int sum(int a,int b){ return a+b;}
2)b)prototype ,example:int sum(int a,int b);
3)d)called , example:sum(2,3);
Note:Please ask in case of any doubt,Thanks,God bless you!!
