C Language Category - quizzes and questions

Category - C Language
Sub category of: Programming Language
Added by admin
35 weeks 2 days ago
in categories C Language
What is the 'static' keyword used for?
static, variable
0
Added by admin
35 weeks 2 days ago
in categories C Language
What is the 'volatile' keyword used for?
0
Added by admin
35 weeks 2 days ago
in categories C Language
What is the 'register' keyword used for?
0
Added by admin
35 weeks 2 days ago
in categories C Language
What is the auto keyword used for?
0
Added by admin
35 weeks 2 days ago
in categories C Language
Are the following two C function prototypes the same? int func(void); int func();
function, void
0
Added by admin
35 weeks 2 days ago
in categories C Language
What will be the output of the following C language program? #include <stdio.h> #define MAX(A,B) (A)...
increment, Macro
0
Added by admin
35 weeks 2 days ago
in categories C Language
What will be the output of the following C program? #include <stdio.h> #define SWAP (T,A,B) {\ T temp...
Array, Macro
0
Added by admin
35 weeks 2 days ago
in categories C Language
What will be the output of the following program? #include <stdio.h> #define SQUARE(x) x*x int main...
Macro
0
Added by admin
35 weeks 2 days ago
in categories C Language
What will be the output of the following program? #include <stdio.h> #define MAX(A,B) ((A) > (B) ? (...
increment, Macro
0
Added by admin
35 weeks 2 days ago
in categories C Language
Is it allowed in C to have a recursive #include directive
0