+ 1
I want to print 3,5,7,9,11 odd numbers! How to do it?
3 Respostas
+ 7
Ashik Ahmed The return statement returns the flow of the execution to the function from where it is called. This statement does not mandatorily need any conditional statements. As soon as the statement is executed, the flow of the program stops immediately and return the control from where it was called. The return statement may or may not return anything for a void function, but for a non-void function, a return value is must be returned.
Syntax:
return[expression];
+ 2
Hey Ashik Ahmed check this tutorial https://www.sololearn.com/learn/C/2929/
+ 1
Would you please explain me the last statement : return mod;?