C Programming - C Preprocessor - Discussion

Discussion Forum : C Preprocessor - True / False Questions (Q.No. 6)
6.
A macro must always be defined in capital letters.
True
False
Answer: Option
Explanation:

FALSE, The macro is case insensitive.

Discussion:
7 comments Page 1 of 1.

Ruku said:   4 years ago
True, a macro is always case-sensitive it's probably a good rule of thumb!

E.G. #define, #ifndef, #elif.

Rach said:   7 years ago
Macro should be written in capitals.

Sindhu said:   7 years ago
Where macro is used in C?

Bhannu prakash said:   8 years ago
MACRO should be in capital letters. It is case sensitive.

Supraja said:   10 years ago
We can declare a macro in small case, but it is preferred to be written in capitals so that it can be easily discovered that it is a macro.

Sindu said:   1 decade ago
Case sensitive in the sense the compiler can work either on capital or smaller letters so macro is case sensitive.

Gopi said:   1 decade ago
Macro is case sensitive

Post your comments here:

Your comments will be displayed after verification.