Logo 
Search:

C Programming Articles

Submit Article
Home » Articles » C Programming » BeginnersRSS Feeds

Example of using preprocessor in different files

Posted By: Erin Brown     Category: C Programming     Views: 1795

Example of using preprocessor in different files.

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

//file1.h#define USD 1

//file2.h#define UKP 1

//file3
#include <stdio.h>
#include <file1.h>           //A
#ifdef USD                   // B#define currency_rate 46     //C#endif//D

#ifdef UKP               // E#define currency_rate 100 //F#endif//G
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 in different files Or get search suggestion and latest updates.

Erin Brown
Erin Brown author of Example of using preprocessor in different files is from London, United Kingdom.
 
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!