+ 4
Whats is the difference between
parameters and arguments in a function
2 Respuestas
+ 10
Arguments are present in function call
Parameters are present in function definition
void a (int x) {}
int main { a (4)}
//4 is argument, x is parameter
+ 5
thnxx....u said it well