Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- sorting
- 정수론
- 인프런
- Algorithm
- 따라하면서 배우는 C언어
- udemy
- Cleancode
- C언어
- C
- 따라하며 배우는 C언어
- php
- dfs
- server
- BASIC
- web
- Math
- greedy
- JavaScript
- programmers
- 생활코딩
- graph
- 종만북
- Algospot
- 따배씨
- BFS
- BOJ
- DP
- 백준
- Python
- String
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 16.14 표준 유틸리티 Utilities 라이브러리 본문
따배씨 - 따라하며 배우는 C언어
16강 전처리기와 라이브러리
16.14 표준 유틸리티 Utilities 라이브러리
#include <stdio.h>
#include <stdlib.h>
/*
rand(), srand(), malloc(), free(), ...
*/
void goodbye(void)
{
printf("GoodBye\n");
}
void thankyou(void)
{
printf("Thankyou\n");
}
int main()
{
printf("Purchased?\n");
if (getchar() == 'y')
atexit(thankyou);
// 프로그램이 종료 될 때, 런타임에서 실행 시킬 함수를 등록
while (getchar() != '\n') {};
printf("Goobye message?\n");
if (getchar() == 'y')
atexit(goodbye);
return 0;
}
#include <stdio.h>
#include <stdlib.h>
#include <stdnoreturn.h>
_Noreturn void stop_now(int i)
// 함수가 실행되고, 프로그램이 끝나는 함수
{
if (i > 0) exit(i);
}
int main()
{
puts("Preparing to stop...");
stop_now(0);
puts("This code is never executed.");
}
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 16.16 memcpy() 와 memmove() (0) | 2021.11.02 |
---|---|
[따배씨] 16.15 assert 라이브러리 (0) | 2021.10.19 |
[따배씨] 16.13 표준 수학 라이브러리 (0) | 2021.10.04 |
[따배씨] 16.12 라이브러리 (0) | 2021.10.04 |
[따배씨] 16.11 inline 함수 (0) | 2021.09.07 |
Comments