0
Please what is the use of (int num) that is what does it do in a function??
Function
3 Answers
+ 3
It is declaring of variable inside a function which means it is local to that function ,you can't access it outside of that function.
+ 1
This type of variable declaration is common in statically typed languages.
0
Understood thanks