Use of #ifdef


    #include <iostream.h>
    #include <conio.h>
    #define  print  1           /* macro 'print' definition */
    void main()
    {
        int a = 10 ;
        clrscr () ;
        a = a + 1 ;
        #ifdef print           /* if macro 'print' defined */
            cout << "a = " << a ;
        #endif
        getch () ;
    }

0 comments:

Post a Comment

 
 
 
 


Copyright © 2012 http://codeprecisely.blogspot.com. All rights reserved |Term of Use and Policies|