C Programming Floating Question
C Programming Floating Question
What are the different types of real data type in C ? A. C. float, double float, double, long double B. D. short int, double, long int double, long int, float
View Answer C Compiler Report Discuss in Forum 2. What will you do to treat the constant 3.14 as a long double? A. C. use 3.14LD use 3.14DL B. D. use 3.14L use 3.14LF
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; } A. C. 40 AC 00 00 00 00 AC 40 B. D. 04 CA 00 00 00 00 CA 04
View Answer C Compiler Report Discuss in Forum 4. Which of the following range is a valid long double (Turbo C in 16 bit DOS OS) ? A. C. 3.4E-4932 to 1.1E+4932 1.1E-4932 to 1.1E+4932 B. D. 3.4E-4932 to 3.4E+4932 1.7E-4932 to 1.7E+4932
Which statement will you add in the following program to work it correctly?
#include<stdio.h>
int main()