I have a requirement I need one #ifdef inside another #ifdef. Is it possible to do so:
Like this #ifdef ABC
/*code lines*/
#ifdef FGH
/*code lines*/
#endif
/*code lines */
#endif
Is this structure allowed in c language.