Choose a topic to test your knowledge and improve your C/C skills
Property which allows to produce different executable for different platforms in C is called?
#include is called
C preprocessors can have compiler specific features.
Preprocessor feature that supply line numbers and file names to compiler is called?
#include are _______ files and #include "somefile.h ________ files.
A preprocessor is a program.
Which of the following are C preprocessors?
#include statement must be written.
#pragma exit is primarily used for?
The C-preprocessors are specified with _________symbol.
The #include directive
The preprocessor provides the ability for _______________.
If #include is used with file name in angular brackets.
What is the output of this C code? int main() { enum {ORANGE = 12, MANGO, BANANA = 11, APPLE}; printf("APPLE = %d ", APPLE); }