Starting Vocational Training From 1-May-2024 Get Detail
Example of #if, #elif, #else and #endif preprocessor directives.
#include <stdio.h>
#define IND 1
#define USA 2
#define UK 3
#define COUNTRY IND
int main()
{
#if COUNTRY == IND
printf("Selected country code is: %d
", COUNTRY);
// Do some task if country is India
#elif COUNTRY == USA
printf("Selected country code is: %d
", COUNTRY);
// Do some task if country is USA
#else
printf("Selected country code is: %d
", COUNTRY);
// Do some task if country is UK
#endif
return 0;
}