What is the default return value of a function?

The default returns value from a function in int. In other words generally unless explicitly specified the default return value by compiler would be integer value from function. So when a programmer wants other than integer values to be returned from function then it is essential that the programmer takes some steps in doing this namely:



1. Mention eth return type in the calling function and

2. Mention the return type in the called function.



Both steps 1 and 2 must be made if the return value is other programmer wants to return other than integer value from function.


Let us see how to do this with a example:



main()

{

float x=2.5,y=3.5,z;

float sample();

z=sample(x,y);

printf(“%f”,z);

}


float sample(x1,y1,z1)

float x1,y1,z1;

{

float z1;

z1= x1+ y1

return(z1);

}



Here the output would be



6.0



Here the return value is float from function sample. Therefore as said before it is declared in calling function namely main() as



float sample()



after the variable declaration in main() and it is also declared in the function sample as



float sample(x1,y1,z1)



It is vital for programmers to follow the above to have the correct return value from function.

Questions by GeekAdmin   answers by GeekAdmin

Showing Answers 1 - 1 of 1 Answers

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions