+ 1
Can we able to pass formal parameter(argument) of function1 to another function2 as a argument within function1 ? If yes how?
for example.. void func1(int a) { func2(a); // a is formal parameter of func1 }
1 Respuesta
for example.. void func1(int a) { func2(a); // a is formal parameter of func1 }