몽상실현개발주의

[따배씨] 16.15 assert 라이브러리 본문

Language/C

[따배씨] 16.15 assert 라이브러리

migrationArc 2021. 10. 19. 18:23

[따배씨] 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

 

실리콘 밸리의 프로그래머 : 네이버 블로그

안녕하세요! 홍정모 블로그에 오신 것을 환영합니다. 주로 프로그래밍 관련 메모 용도로 사용합니다. 강의 수강하시는 분들은 홍정모 연구소 카페로 오세요.

blog.naver.com

http://www.inflearn.com/course/following-c

 

홍정모의 따라하며 배우는 C언어 - 인프런 | 강의

'따배씨++'의 성원에 힘입어 새롭게 개발된 C 언어로 시작하는 프로그래밍 입문 강의입니다. '따배씨'와 함께 프로그래밍 인생을 업그레이드 해보세요., 따라하며 배우는 C언어 '따배씨++'의 성원

www.inflearn.com

 

Comments