C Preprocessor Operator: defined


In this video tutorial lets see how to use preprocessor operator “defined” in C programming language.

How Does ‘defined’ preprocessor operator work?

defined preprocessor operator can only be used with #if and #elif directives.

If the Macro name passed to define is actually defined, then it returns true or else it’ll return false.

Syntac of “defined”

  1. #if( defined(macro_name1) )  
  2.   // Some Set of Code  
  3. #elif( defined(macro_name2) )  
  4.   // Some More Set of Code  
  5. #endif  

OR

  1. #if defined(macro_name1)   
  2.   // Some Set of Code  
  3. #elif defined(macro_name2)   
  4.   // Some More Set of Code  
  5. #endif  

Video Tutorial: C Preprocessor Operator: defined



YouTube Link: https://www.youtube.com/watch?v=IDiV22rMPBk [Watch the Video In Full Screen.]

Source Code: C Preprocessor Operator: defined

  1. #include<stdio.h>  
  2.   
  3. #define PI 3.14159265358979323846  
  4.   
  5. #define AREA  
  6.   
  7. void area_circle(float r);  
  8. void circumference_circle(float r);  
  9.   
  10. int main()  
  11. {  
  12.     float r;  
  13.   
  14.     printf("Enter radius of Circle\n");  
  15.     scanf("%f", &r);  
  16.   
  17.     #if defined(AREA)  
  18.         area_circle(r);  
  19.     #elif defined(CIRCUM)  
  20.         circumference_circle(r);  
  21.     #else  
  22.         printf("Code To Be Implemented\n");  
  23.   
  24.     #endif // defined  
  25.   
  26.     return 0;  
  27. }  
  28.   
  29. void area_circle(float r)  
  30. {  
  31.     printf("Area of Circle is %f\n", (PI * r * r) );  
  32. }  
  33.   
  34. void circumference_circle(float r)  
  35. {  
  36.     printf("Circumference of Circle is %f\n", (2 * PI * r) );  
  37. }  

Output:
Enter radius of Circle
5
Area of Circle is 78.539816

In above source code AREA macro template or macro name is defined. So defined(AREA) returns true in #if condition. Hence the code inside #if block gets compiled and executed.

  1. #include<stdio.h>  
  2.   
  3. #define PI 3.14159265358979323846  
  4.   
  5. #define CIRCUM  
  6.   
  7. void area_circle(float r);  
  8. void circumference_circle(float r);  
  9.   
  10. int main()  
  11. {  
  12.     float r;  
  13.   
  14.     printf("Enter radius of Circle\n");  
  15.     scanf("%f", &r);  
  16.   
  17.     #if defined(AREA)  
  18.         area_circle(r);  
  19.     #elif defined(CIRCUM)  
  20.         circumference_circle(r);  
  21.     #else  
  22.         printf("Code To Be Implemented\n");  
  23.   
  24.     #endif // defined  
  25.   
  26.     return 0;  
  27. }  
  28.   
  29. void area_circle(float r)  
  30. {  
  31.     printf("Area of Circle is %f\n", (PI * r * r) );  
  32. }  
  33.   
  34. void circumference_circle(float r)  
  35. {  
  36.     printf("Circumference of Circle is %f\n", (2 * PI * r) );  
  37. }  

Output:
Enter radius of Circle
5
Circumference of Circle is 31.415927

Here macro name AREA is not defined, hence code inside #if gets skipped. Whereas macro CIRCUM is defined, so the code inside #elif gets compiled and executed.

If neither AREA and nor CIRCUM is defined, then code inside #else block gets compiled and executed.

For list of all c programming interviews / viva question and answers visit: C Programming Interview / Viva Q&A List

For full C programming language free video tutorial list visit:C Programming: Beginner To Advance To Expert

Leave a Reply

Your email address will not be published. Required fields are marked *