+1 vote
in Class 11 by kratos

Give the syntax of function with no arguments and with return values.

1 Answer

+2 votes
by kratos
 
Best answer

Syntax:

int functionname()

{

statements;

retum(1);

}

...