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
- C
- 따배씨
- C언어
- 정수론
- Algorithm
- greedy
- dfs
- udemy
- 따라하면서 배우는 C언어
- BASIC
- 인프런
- php
- Algospot
- Cleancode
- 백준
- 종만북
- String
- BFS
- server
- 생활코딩
- BOJ
- programmers
- Python
- graph
- JavaScript
- DP
- Math
- sorting
- 따라하며 배우는 C언어
- web
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 16.15 assert 라이브러리 본문
따배씨 - 따라하며 배우는 C언어
16강 전처리기와 라이브러리
16.15 assert 라이브러리
- 디버깅 할 때 유용하게 사용 가능
#include <stdio.h>
int divide(int a, int b);
int main()
{
int a, b;
int f = scanf("%d%d", &a, &b);
printf("a / b = %d\n", divide(a, b) );
return 0;
}
int divide(int a, int b)
{
assert(b != 0);
// b == 0 일때, assert 동작
return a / b;
}
- assert 는 Release Mode 에서는 compile 시 포함되지 않음
- Debug Mode Runtime 에서 동작
- static assert 는 compile time 에서 동작
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 16.17 가변 인수 Variable Arguments (0) | 2021.11.02 |
---|---|
[따배씨] 16.16 memcpy() 와 memmove() (0) | 2021.11.02 |
[따배씨] 16.14 표준 유틸리티 Utilities 라이브러리 (0) | 2021.10.19 |
[따배씨] 16.13 표준 수학 라이브러리 (0) | 2021.10.04 |
[따배씨] 16.12 라이브러리 (0) | 2021.10.04 |
Comments