#ifndef Demo : ifndef « Macro Preprocessor « C / ANSI-C






#ifndef Demo

      
//file1.h
#define USD 1

//file2.h
#define UKP 1

//file3
#include <stdio.h>
#include <file1.h> 

#ifndef USD  
       #define currency_rate 100 
#endif 

#ifndef UKP 
   #define currency_rate 46 
#endif 

main()
{    
  int rs;
  rs = 10 * currency_rate; 
  printf ("%d\n", rs);
}



           
       








Related examples in the same category