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
How can draw a box in cprogram without using graphics.h header file & using only one printf(); ?
why we are using float in C
Explain modulus operator.
what is diff b/w huge & far & near pointer??
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
the data type used for unlimited value in c and how to do this program
how to find a 5th bit is set in c program
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
What is 1f in c?
. Write a program to get a string and to convert the 1st letter of it to uppercase
What is C language Terminator?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }