What does mean from calling function or calling program? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What does mean from calling function or calling program?

11th Apr 2020, 9:53 AM
Abdul Wahab Junaid
Abdul Wahab Junaid - avatar
3 Answers
+ 4
After defining function, we need to call it to execute that function and get results.. Ex: void add(int n, int m) { printf("%d", n+m); } Now we can call this like add(2,5); Output we get is 7
11th Apr 2020, 10:01 AM
Jayakrishna 🇮🇳
+ 3
A  calling function is a request made by a program or script that performs a predetermined function.
11th Apr 2020, 9:57 AM
Ayush Kumar
Ayush Kumar - avatar
+ 2
After a function definition it is supposed to be called to perform its specific task.for example we can create a function that add two integers and output its results when involved. #include<iostream> Using namespace std; Int add( int a,int b) {int c; c=a+b; return c; } int main() { int m,n=39; G=add(m,n); cout<<G<<endl; return 0; }
11th Apr 2020, 5:09 PM
JUMA OTIENO RASHID
JUMA OTIENO RASHID - avatar