assert 함수는 아래와 같이 사용하는 거다!! assert와 함께 설명까지!!! 이건 assert() 함수를 까보지 않고서는 하지 못하는 스킬이다. god damm!!!! 너무 멋지잖아!! assert( 0 != NULL && "포인터 메모리 할당을 실패했잖아" ); + 다음은 C99의 assert.h이다. 코드가 예술이다.. + #include #include // The following is an implementation of the Standard C99 version of : /* assert.h header */ #undef assert #ifdef NDEBUG #define assert(_Ignore) ((void)0) // DEBUG를 사용하지 않으면 assert가 실행하지 않게 함 ..