topic/Floating Point Issues
Start Test
Question No
Title
Type
Marks
537.
What are the different types of real data type in C ?
MCQ
5
539.
If the binary eauivalent of 5.375 in normalised form is 0100 0000 1010 1100 0000 0000 0000 0000, what will be the output of the program (on intel machine)?#include<stdio.h> #include<math.h> int main() { float a=5.375; char *p; int i; p = (char*)&a; for(i=0; i<=3; i++) printf("%02x\n", (unsigned char)p[i]); return 0; }
MCQ
5
540.
Which of the following range is a validlong double(Turbo C in 16 bit DOS OS) ?
MCQ
5
541.
Which statement will you add in the following program to work it correctly?#include<stdio.h> int main() { printf("%f\n", log(36.0)); return 0; }
MCQ
5
538.
What will you do to treat the constant 3.14 as along double?
MCQ
5