151k views
2 votes
The #elif and #else directives are provided as shorthand notation for the #if defined(name) and #if !defined(name).

True


False

User PhilTrep
by
4.5k points

1 Answer

2 votes

Answer:

The correct option is;

False

Step-by-step explanation:

In fpp Directives, a shorthand for #if defined(name) is #ifdef and a shorthand for #if.not defined(name) is #ifndef. They have similar function to the #if directive in combination with the operator with which they are defined

Directives in fpp are preceded by the number sign (#) sign being the line's prefix character. fpp directives can be fixed in any location within a source code. Indentation which is a white space (or blank character) can be represented by a blank space before the number sign.

User Darrell Root
by
5.1k points