What is difference between calling and called function? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 4

What is difference between calling and called function?

25th Oct 2017, 3:47 PM
Charan Tony
Charan Tony - avatar
4 Answers
+ 3
If function A() calls function B(), then A is calling and B is called.
25th Oct 2017, 4:07 PM
Shamima Yasmin
Shamima Yasmin - avatar
0
what is called and calling function?
27th Jun 2019, 2:47 PM
Tanya Ahmed
Tanya Ahmed - avatar
0
def fun(i): #this is called function print("hello manish",i) func(j) # this is calling function. .. All the manipulation work is done in calling function.and the for the output purpose another function is called.. As shown in above example..
4th Oct 2019, 2:09 AM
manish kumar gupta
manish kumar gupta - avatar
0
A calling function have actual parameter and called funtion have formal parameter that contains definition
8th Jul 2020, 7:17 PM
Anwar Ullah
Anwar Ullah - avatar