Sail E0 Webinar
Question

If a function contains two return statements successively, the compiler will generate 

warnings. Yes/No ?


Options:
A .  Yes
B .  No
Answer: Option A


Yes. If a function contains two return statements successively, the compiler
will GENERATE "Unreachable code" warnings.
Example:


#include<stdio.h>
int mul(int, int); /* Function prototype */
int main()
{
int a = 4, b = 3, c;
c = mul(a, b);
printf("c = %d\n", c);
return 0;
}
int mul(int a, int b)
{
return (a * b);
return (a - b); /* Warning: Unreachable code */
}


Output:
c = 12




Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers