return-1이 실행된 후에 다음 프로그램을 계속 실행했는지 확인하기

922 단어 C 언어 노트

#include

int FUNC(void);
void func1(void);
void func2(void);
void func3(void);
int i=0;

int main(void)
{
	FUNC();
	
	return 0;
}


int FUNC(void)
{
	func1();
	if(1)  return -1;
	func2();
	func3();
		
}

void func1(void)
{
	printf("the frist core 
"); } void func2(void) { printf("the second core
"); } void func3(void) { printf("the thrid core
"); }

 
*********************************************************************************************************************************************************************************************************************** 결과: the frist core
결론:if조건이 진실이면 실행된return-1은 FUNC 함수에서 튀어나와 다음 함수를 계속하지 않습니다
******************************************************************************************************************************************************************/

좋은 웹페이지 즐겨찾기