+ 2
What is argument
with example
2 Respuestas
+ 4
Math.Min(a , 10);
a and 10 are arguments for function Min().
+ 1
values passed at the place of parameters on function call.
def fun (int a, int b):
int sum=a+b
here a, b are parameters of fun.
now
main ()
fun (2,3)
here 2,3 are passed arguments.
syntax is just to explain you.