The preprocessors in C are defined with ______ character.
2023
The preprocessors in C are defined with ______ character.
- A.
.
- B.
#
- C.
*
- D.
$
- E.
Question not attempted
Attempted by 776 students.
Show answer & explanation
Correct answer: B
In C, preprocessor directives are commands processed before compilation, and they always begin with the # symbol.
Examples:
#include <stdio.h>
#define PI 3.14
Here, #include and #define are preprocessor directives.