InterviewSolution
Saved Bookmarks
| 1. |
Give the syntax of function with no arguments and with no return values. |
|
Answer» Syntax: void functionname() { statements; } |
|