#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
Which line from the given code is the passive form?
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
Which line from the given code is the passive form?
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!