0
What is a call statement in C++?
Describe a call statement, and give an example using C++.
2 Respuestas
0
A call is a call to a function with or without parameters. Like so: fun(int a, int b);
0
Thanks!
Describe a call statement, and give an example using C++.