What is the default return value of a function?

The default return value from a function is int. In other words, unless explicitly specified the default return value by compiler would be integer value from function.  

When a programmer wants other than integer values to be returned from function then it is essential that the programmer follows the steps provided here below:

1. Mention the return type in the calling function 
2. Mention the return type in the called function.

Both steps 1 and 2 must be made if the return value is other than integer.

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 method to get correct return value from function.

Editorial Team at Geekinterview is a team of HR and Career Advice members led by Chandra Vennapoosa.

Editorial Team – who has written posts on Online Learning.


Pin It