Question: Which of the following range is a valid long double (Turbo C in 16 bit DOS OS) ?
A
B
C
D
3.4E-4932 to 1.1E+4932
B
3.4E-4932 to 3.4E+4932
C
1.1E-4932 to 1.1E+4932
D
1.7E-4932 to 1.7E+4932
Note: Not available
#include<stdio.h>
int main(){
printf("%d\t",sizeof(6.5));
printf("%d\t",sizeof(90000));
printf("%d",sizeof('A'));
return 0;
}#include<stdio.h>
int main(){
signed x;
unsigned y;
x = 10 +- 10u + 10u +- 10;
y = x;
if(x==y)
printf("%d %d",x,y);
else if(x!=y)
printf("%u %u",x,y);
return 0;
}