neoaspilet11
Full Member level 5
- Joined
- Sep 29, 2005
- Messages
- 277
- Helped
- 29
- Reputation
- 56
- Reaction score
- 8
- Trophy points
- 1,298
- Location
- Cebu, Philippines
- Activity points
- 4,048
Hello Friends,
This might sound simple:
How to use the following conditional statements
1.) #ifdef
2.) #ifundef
IF I have this
#define DEBUG_STRING 1
is
#if(DEBUG_STRING)
//... blah
#endif
equal to
#ifdef(DEBUG_STRING)
//..blah
#endif
This might sound simple:
How to use the following conditional statements
1.) #ifdef
2.) #ifundef
IF I have this
#define DEBUG_STRING 1
is
#if(DEBUG_STRING)
//... blah
#endif
equal to
#ifdef(DEBUG_STRING)
//..blah
#endif