我编写了这个程序来计算 C 中一些数据类型的最大值和最小值,有符号数据类型。问题是它给出了正确的最大值但不正确的最小值,尽管我认为我的逻辑是正确的。我知道有更好、更有效的方法来获得结果,我也已经实施了这些方法。只需要知道给定的代码哪里出错了。
我做了什么?我已经使用 sizeof 运算符实现了这一点,然后计算类型中的位数并使用它来计算最大值和最小值。
提前谢谢.......
/*
* Program to calculate the size of various data types like :
* int, long, short, char
*
* Version 3
*
* Problem with this version : Working correct only for maximum value of a
* data type.
*
* Author : Ravi Malik
*/
#include<stdio.h>
int main()
{ int i, i_prev ;
long l, l_prev ;
char c, c_prev ;
short s, s_prev ;
for( i = 0, i_prev = -1 ; i > i_prev ; i = i << 1 | 0x01 )
i_prev = i ;
for( l = 0, l_prev = -1 ; l > l_prev ; l = l << 1 | 0x01 )
l_prev = l ;
for( c = 0, c_prev = -1 ; c > c_prev ; c = c << 1 | 0x01 )
c_prev = c ;
for( s = 0, s_prev = -1 ; s > s_prev ; s = s << 1 | 0x01 )
s_prev = s ;
printf("MAX_INT:%d and MIN_INT:%d\n",i_prev,i);
printf("MAX_LONG:%ld and MIN_INT:%ld\n",l_prev,l);
printf("MAX_CHAR:%d and MIN_CHAR:%d\n",c_prev,c);
printf("MAX_SHORT:%hd and MIN_SHORT:%hd\n",s_prev,s);
return 0;
}