Computer Science, asked by oendrila8, 10 months ago

what is the use of Return statement also write that how many values can be returned by one function

Answers

Answered by Aishwarya98
0

Return statement:

1. The return statement terminates the execution of the function

2. It returns the value for which the function is typecasted.

For example..

if int main is declared as a function, the return type should by integer value.

How many values can be returned by one function?

Only one value can be returned by the function.

Similar questions