Vidyalelo
C Programming · Q46

Standard Library Functions

Programming · C Programming · question 46

Q46

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)
Answer
C.
#ifdef NDEBUG
D.
#undef assert

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board