C Programming - Floating Point Issues

Why should I learn to solve C Programming questions and answers section on "Floating Point Issues"?

Learn and practise solving C Programming questions and answers section on "Floating Point Issues" to enhance your skills so that you can clear interviews, competitive examinations, and various entrance tests (CAT, GATE, GRE, MAT, bank exams, railway exams, etc.) with full confidence.

Where can I get the C Programming questions and answers section on "Floating Point Issues"?

IndiaBIX provides you with numerous C Programming questions and answers based on "Floating Point Issues" along with fully solved examples and detailed explanations that will be easy to understand.

Where can I get the C Programming section on "Floating Point Issues" MCQ-type interview questions and answers (objective type, multiple choice)?

Here you can find multiple-choice C Programming questions and answers based on "Floating Point Issues" for your placement interviews and competitive exams. Objective-type and true-or-false-type questions are given too.

How do I download the C Programming questions and answers section on "Floating Point Issues" in PDF format?

You can download the C Programming quiz questions and answers section on "Floating Point Issues" as PDF files or eBooks.

How do I solve C Programming quiz problems based on "Floating Point Issues"?

You can easily solve C Programming quiz problems based on "Floating Point Issues" by practising the given exercises, including shortcuts and tricks.

Exercise : Floating Point Issues - General Questions
1.
What are the different types of real data type in C ?
float, double
short int, double, long int
float, double, long double
double, long int, float
Answer: Option
Explanation:
The floating point data types are called real data types. Hence float, double, and long double are real data types.

2.
What will you do to treat the constant 3.14 as a long double?
use 3.14LD
use 3.14L
use 3.14DL
use 3.14LF
Answer: Option
Explanation:

Given 3.14 is a double constant.

To specify 3.14 as long double, we have to add L to the 3.14. (i.e 3.14L)


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;
}
40 AC 00 00
04 CA 00 00
00 00 AC 40
00 00 CA 04
Answer: Option
Explanation:
No answer description is available. Let's discuss.

4.
Which of the following range is a valid long double (Turbo C in 16 bit DOS OS) ?
3.4E-4932 to 1.1E+4932
3.4E-4932 to 3.4E+4932
1.1E-4932 to 1.1E+4932
1.7E-4932 to 1.7E+4932
Answer: Option
Explanation:

The range of long double is 3.4E-4932 to 1.1E+4932


5.
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;
}
#include<conio.h>
#include<math.h>
#include<stdlib.h>
#include<dos.h>
Answer: Option
Explanation:

math.h is a header file in the standard library of C programming language designed for basic mathematical operations.

Declaration syntax: double log(double);