Which statement is incorrect include statement include looks
Solution
In the question number 13
The incorrect answer is the second option.
Reason:
Because #define cannot be use to define a name for symbol. It is used to assign predefined values for variables or constant values for variables.The value which is defined globally using #define tag are constants and cannot be chaged through out the execution of the program.
Example: If we are calculating the value of area of circle. The formulae is PI*r*r where PI is the constant value of 3.14. #define is used to add constant PI value to the memory during execution, in global declaration.The value of PI will not change and cannot be changed through out the program.
The declaration
#define PI 3.14
In the question number 14
The correct answer is option 4.
Reason:
The correct preprocessor command necessary to prevent multiple inclusions of header files is
#include HEADER.H .the other options contains wrong declarations namely #define which is used to define predefined values or constant values not a header file and #ifndef is used to prior declarataion of variables that are valued in the #define statement not to prevent inclusions of header files.

