User login
Call 1800-123-2003
Our Schools
SabariGiri Residential School
"Smartindia is the best online tool for school students." Ms Deepa Chandran, Principal Anchal
M. G. M. Model School
"Smartindia is one of the best supplementary education tool for school students." Ms Pooja, Principal
Read More
Demo Video
Ask a Teacher
- CBSE
- ICSE/ISC
- Kerala (English Medium)
-
IGCSE
- All Questions
- Cambridge Pre-Primary 1
- Cambridge Pre-Primary 2
- Cambridge Primary Grade 1
- Cambridge Primary Grade 2
- Cambridge Primary Grade 3
- Cambridge Primary Grade 4
- Cambridge Secondary Grade 5
- Cambridge Secondary Grade 6
- Cambridge Secondary Grade 7
- Cambridge Secondary Grade 8
- Cambridge Secondary Grade 9
- Cambridge Secondary Grade 10
- Cambridge Advanced Grade 11
- Cambridge Advanced Grade 12
what is mean by return value? where would be it stored? |
A function defined with a return type must include an expression containing the value to be returned. When a function returns a value, the value is returned via a return statement to the caller of the function, after being implicitly converted to the return type of the function in which it is defined. The following code fragment shows a function definition including the return statement: int add(int i, int j) { return i + j; // return statement } |