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 'volatile' keyword used for?
Added by admin
35 weeks 2 days ago
in categories C Language
What is the 'register' keyword used for?
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();
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)...
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...
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...
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) ? (...
Added by admin
35 weeks 2 days ago
in categories C Language
Is it allowed in C to have a recursive #include directive



