Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

the return statement of C in a function

I am a newbie of C language, I have a question about return statement in C:

void verifyValue(int value)
{
   return;
}

void handleValue(int value)
{
   switch(value)
   {
      case 1:
         // do something
         break;

      case 10:
         verifyValue(value);
         // the rest of code part 1
         break;
      default:
         break;           
   }
}

int main()
{
   int vlaue = 10;
   handleValue(value);

   // the rest of code part 2
}

so the verifyValue() function will return in case 10, once it returns, will the rest of code part 1 continue to execute or the rest of code part 2 continue to execute, from where this return in verifyValue() really returned?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
case 10:
         verifyValue(value);
         // the rest of code part 1
         break;

verifyValue() function is called and after returning from that function

// the rest of code part 1

is executed. After that break is executed so you get out of switch construct.

Later the control is returned to main() and

// the rest of code part 2

is executed.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...