Logo 
Search:

C Programming Articles

Submit Article
Home » Articles » C Programming » BeginnersRSS Feeds

Example of using preprocessor - 3 in different files

Posted By: William Bouchard     Category: C Programming     Views: 1376

Example of using preprocessor - 3 in different files.

Code for Example of using preprocessor - 3 in different files in C Programming

//file1.h#define USD 1

//file2.h#define UKP 1

//file3
#include <stdio.h>
#include <file1.h>               //A#if (defined (USD))                   // B #define currency_rate 46
#elif (defined (UKP))
     #define currency_rate 100          //C#else
     # define currency_rate 1        //D#endif                        

 main()
{        
    int rs;
    rs = 10 * currency_rate;          //H
    printf (“%d\n”, rs);
}
  
Share: 


Didn't find what you were looking for? Find more on Example of using preprocessor - 3 in different files Or get search suggestion and latest updates.

William Bouchard
William Bouchard author of Example of using preprocessor - 3 in different files is from Montreal, Canada.
 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!