함수 기능
exit
프로그램을 정상 종료시킬 떄 사용하는 라이브러리 함수
_Exit, _exit
프로그램 종료 시스템호출 함수
함수 원형
#include <stdlib.h>
void exit(int status);
void _Exit(int status);
#include <unistd.h>
void _exit(int status);
함수 파라메터
status
프로세스 종료 상태
함수 예제
_exit
#include<stdio.h>
#include<unistd.h>
int main(void){
printf("Good afternoon?");
_exit(0);
}
exit
#include<stdio.h>
#include<stdlib.h>
int main(void){
printf("Good afternoon?");
exit(0);
}
리눅스시스템 프로그래밍 - 홍지만 저
교재 내에 있는 예제를 바탕으로 작성한 글 입니다.
'C & LINUX' 카테고리의 다른 글
C / LINUX access() (0) | 2022.05.02 |
---|---|
C / LINUX atexit(3) (0) | 2022.05.02 |
C / LINUX tempnam(3) (0) | 2022.05.02 |
C / LINUX tmpnam, tmpfile (0) | 2022.05.02 |
C / LINUX scanf(3) fscanf(3) sscanf(3) (0) | 2022.05.02 |