double atof(0.321e2)的结果为()
0.321
3.21
32.1
321
函数double atof(char *x)的返回值:返回x所指向的字符串转换成的实数。即0.321e2的转换结果为32.1。