Starting Vocational Training From 1-May-2024 Get Detail
Example of #ifdef and #ifndef .
#include <stdio.h>
// MACRO definition
#define COUNTRY "INDIA"
int main()
{
// If COUNTRY is defined, print a message
#ifdef COUNTRY
printf("Country is defined
");
#endif
// If STATE is not defined, define it
#ifndef STATE
printf("State is not defined. Defining state.
");
#define STATE "PATNA"
#endif
printf("State is: %s
", STATE);
return 0;
}