In this section you can learn and practice C Programming Questions based on "Floating Point Issues" and improve your skills in order to face the interview, competitive examination and various entrance test (CAT, GATE, GRE, MAT, Bank Exam, Railway Exam etc.) with full confidence.
Where can I get C Programming Floating Point Issues questions and answers with explanation?
IndiaBIX provides you lots of fully solved C Programming (Floating Point Issues) questions and answers with Explanation. Solved examples with detailed answer description, explanation are given and it would be easy to understand. All students, freshers can download C Programming Floating Point Issues quiz questions with answers as PDF files and eBooks.
Where can I get C Programming Floating Point Issues Interview Questions and Answers (objective type, multiple choice)?
Here you can find objective type C Programming Floating Point Issues questions and answers for interview and entrance examination. Multiple choice and true or false type questions are also provided.
How to solve C Programming Floating Point Issues problems?
You can easily solve all kind of C Programming questions based on Floating Point Issues by practicing the objective type exercises given below, also get shortcut methods to solve C Programming Floating Point Issues problems.
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;
}