Answer:
If
we will assign a value which is beyond the maximum value of that data type
compiler will assign +INF if number is positive and –INF if number is negative.
If we will assign a value witch is less than minimum value of that data type
then complier will assign a garbage value or zero.
double data type overflow :
For example: What will be output of following c code?
#include<stdio.h>
int main(){
float pmax= 3.5e38f;
float nmin=-3.3e38f;
float min= 1.0e-38f;
printf("%f %f
%f",pmax,nmin,min);
return 0;
}
Overflow of char data type in c programming
Overflow of int data type in c programming
Overflow of long int data type in c programming
Overflow of float data type in c programming
2 comments:
ans. of program is
pmax=+INF
nmin=-32999999654827121000000000000000000000.0
min=0.000000
Plz explain the ans of second one
Post a Comment