Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
24 views

C Programming Floating Question

The document discusses real data types in C and long double constants. It asks questions about: 1. The different real data types in C. 2. How to treat the constant 3.14 as a long double. 3. The output of a program that stores the binary equivalent of 5.375 in a float and prints its bytes. 4. The valid range of long double on a 16-bit DOS Turbo C compiler. 5. A statement needed to correctly compile a code snippet.

Uploaded by

Praveen Bhardwaj
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views

C Programming Floating Question

The document discusses real data types in C and long double constants. It asks questions about: 1. The different real data types in C. 2. How to treat the constant 3.14 as a long double. 3. The output of a program that stores the binary equivalent of 5.375 in a float and prints its bytes. 4. The valid range of long double on a 16-bit DOS Turbo C compiler. 5. A statement needed to correctly compile a code snippet.

Uploaded by

Praveen Bhardwaj
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

1.

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

View Answer C Compiler Report Discuss in Forum 3.

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

View Answer C Compiler Report Discuss in Forum 5.

Which statement will you add in the following program to work it correctly?

#include<stdio.h>

int main()

You might also like