Changes

Jump to: navigation, search

Week 2

693 bytes added, 13:44, 20 May 2010
no edit summary
Another example: ''#define MAX(x, y) ((x)>(y)?(x):(y))''
 
<u>Conditional Compilation</u>
 
With conditional compilation you can tell the compiler to only compile a section of the code.
 
''#define COMPINT 1''
''#define COMPDOUBLE 2''
''#define COMP COMPINT''
 
In the code:
 
''#ifdef COMP == COMPINT''
''Code''
''Code''
''Code''
''#endif''
 
''#ifdef COMP == COMPDOUBLE''
''Code''
''Code''
''Code''
''#else''
''Code''
''Code''
''Code''
''#endif''
 
It will only compile the first if statement and the else statement.
 
 
Thursday May 20, 2010
 
Cursor Movement Low-Level Header Files:
 
'''Platforms: Headers: '''
BCC: conio.h
VCC: windows.h and conio.h
Linux: ncurses.h
Unix: curses.h
1
edit

Navigation menu