GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN
MEMORY ? CAN ANYONE EXPLAIN??
THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS:
1 BIT-SIGN
8 BITS-EXPONENT
23 BITS-MANTISSA
No Answer is Posted For this Question
Be the First to Post Answer
Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..
What is the use of getch ()?
What is a list in c?
What is the difference between constant pointer and pointer to a constant. Give examples.
What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS
declare afunction pointer to int printf(char *)?
write the program for maximum of the following numbers? 122,198,290,71,143,325,98
Why shouldn’t I start variable names with underscores?
how to set Nth bit of a variable?
What is 1f in c?