A float occupies 4 bytes in memory. How many bits are used
to store exponent part?
since we can have up to 38 number for exponent so 2 ki power
6 6, 6 bits will be used. If 6 bits are used why do not we
have up to 64 numbers in exponent?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
cavium networks written test pattern ..
What is #line in c?
Write a program to print numbers from 1 to 100 without using loop in c?
Write a code to generate a series where the next element is the sum of last k terms.
What is hashing in c?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
write a program whose output will be- 1 12 123 1234
write a programme to convert temperature from farenheit to celcius?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
how to execute with out main in cprogram