write down the syntax to define a function
Answers
Answered by
1
Answer:
The general form of a function definition is R name(arguments) { body } where. R is the type of result that the function returns, name is the function's name, arguments is a comma-separated list of the function's arguments. Each argument is given as a type followed by a name.
Similar questions