Examveda

Which line from the given code is the passive form?
#undef assert 
#ifdef NDEBUG 
#define assert (test) ( (void) 0) 
#else 
#define assert (test)  
#endif

A. #define assert(test)

B. #define assert(test) ((void)0)

C. #ifdef NDEBUG

D. #undef assert

Answer: Option B


This Question Belongs to C Program >> Standard Library Functions

Join The Discussion

Related Questions on Standard Library Functions