为什么没有越界
#include "stdio.h"#include "time.h"
#include "conio.h"
void main()
{int star=time(NULL),end;
getch();
end=time(NULL);
printf("%d\n",end-star);
printf("%d\n%d",star,end);
}
计算从你开始运行这个程序到你按任意键的时间,
为什么不会越界,从现在到1970年一月一日起到现在的秒数好像已经越了int的界限了,为什么输出还是没有错。