#include <pic.h><br />#include <pic16f91x.h><br />float x=0,t=0;<br />void main(void)<br />{<br />while(1)<br /> {<br /> x=1.0; <br /> t=t+1.0;<br /> }<br />x=0;<br />}<br />上面的程序第一次运行到<br />t=t+1.0;<br />这一行时x的结果为什么是-5.831554e-039(无论变量观察窗口还是鼠标指向x)?<br /> |
|