MCQOPTIONS
Bookmark
Saved Bookmarks
→
C Programming
→
Floating Point Issues
→
If is 2 bytes wide.What will be the output of the...
1.
If is 2 bytes wide.What will be the output of the program?
A.
ab
B.
cd
C.
ef
D.
gh
Answer» C. ef
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
In C all functions except can be called recursively.
If is 2 bytes wide.What will be the output of the program?
If a function contains two statements successively, the compiler will generate warnings. Yes/No ?
Will the following functions work?
In a function two statements should never occur.
What will be the output of the following C code?#include <stdio.h> void fun(); int main() { void fun(); fun(); return 0; } void fun() { printf("Hello..."); }
What will be the output of the following C code?#include <stdio.h> void N() { printf("Hello..."); } void main() { N(); }
What will be the output of the following C code?#include <stdio.h> int main() { void funA(); void funB() { funA(); } funB(); } void FunA() { printf("Interview Mania"); }
What will be the output of the following C code?#include <stdio.h> void fun(); int main() { void fun(int); fun(); return 0; } void fun() { printf("200"); }
What will be the output of the following C code?#include <stdio.h> void fun(); int main() { void fun(int); fun(100); return 0; } void fun(int n) { printf("200 "); }
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