0
How to pass argument into user defined function
2 Respuestas
+ 2
Just insert all arguments in between the parentheses when calling the function, separated by a comma (' , ')
+ 1
Func(arg1,arg2,...);
You can call user defined function like above. There are two ways ! Call by value and call by reference. Above example is call by value
Call by reference
Func(&arg1,&arg2,..);