MCQOPTIONS
Bookmark
Saved Bookmarks
→
C Programming
→
Floating Point Issues
→
The else if in conditional inclusion is written...
1.
The else if in conditional inclusion is written by?
A.
#elif
B.
#elsif
C.
#elseif
D.
#else if
E.
None of these
Answer» B. #elsif
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
Which of the following is the correct output for the program given below? #include <stdio.h>#define SQR(k) (k * k)int main( ){ int p, q = 5 ; p = SQR (q + 3) ; printf ("%d n" , p) ; return 0 ;}
What will be the output of the following C code? #include <stdio.h> #define Winter int main() { #ifdef Winter printf("Winter t"); #undef Winter #endif #ifdef Winter printf("Summer t"); #endif }
What will be the output of the following C code?#include <stdio.h> #define MINIMUM 20 #if MINIMUM #define MAXIMUM 100 #endif int main() { printf("%d %d n", MAXIMUM, MINIMUM); return 0; }
What will be the output of the following C code?#include <stdio.h> #define MINIMUM 21); #ifdef MINIMUM #define MAXIMUM 210 #endif int main() { printf("%d %d n", MAXIMUM, MINIMUM return 0; }
What will be the output of the following C code?#include <stdio.h> #define MINIMUM 30 #ifdef(MINIMUM) #define MAXIMUM 250 #endif int main() { printf("%d %d n", MAXIMUM, MINIMUM); return 0; }
What will be the output of the following C code? #include <stdio.h> #define MINIMUM 15 #if defined(MINIMUM) - (!defined(MAXIMUM)) #define MAXIMUM 115 #endif int main() { printf("%d %d n", MAXIMUM, MINIMUM); return 0; }
What will be the output of the following C code?#include <stdio.h> #define MINIMUM 25 #if defined(MINIMUM) + defined(MAXIMUM) #define MAXIMUM 125 #endif int main() { printf("%d %d n", MAXIMUM, MINIMUM); return 0; }
What will be the output of the following C code? #include <stdio.h> #define MINIMUM 10 #ifdef MINIMUM #define MAXIMUM 110 #endif int main() { printf("%d %d n", MAXIMUM, MINIMUM); return 0; }
What will be the output of the following C code?#include <stdio.h>#define fun(p, q) p * q = 101int main(){ printf("Interview Mania n");}
What will be the output of the following C code?#include <stdio.h> #define calc(p, q) p / q + p int main() { int a = -10, b = 5; printf("%d n", calc(a + b, 5)); return 0; }
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply
Your experience on this site will be improved by allowing cookies. Read
Cookie Policy
Reject
Allow cookies