码迷,mamicode.com
首页 > 其他好文 > 详细

C PRIMER PLUS 学习笔记(一)

时间:2014-06-28 21:57:22      阅读:305      评论:0      收藏:0      [点我收藏+]

标签:get   strong      c   学习   har   

1显示程序执行的窗口一闪即逝。可以添加如下语句:

getchar()

作用是获取键盘输入。


2 infnan

float toobig = 3.4e38 * 100.0f;
float not_a_number = asin(1.2);//math.h
printf("%e \t %e\n", toobig,not_a_number);

inf-表示无穷大,nan-Not-a-number


3 long double 的输出格式

long double x;
x = 3.2e-5;
printf("x = %f, x = %e\n", x, x);
printf("x = %lf, x = %le\n", x, x);
printf("x = %Lf, x = %Le\n", x, x);

long double 应采用%Lf(%lf)或者%Le(%le)或者%La(%la)
%a指十六进制指数格式输出。


 

C PRIMER PLUS 学习笔记(一),布布扣,bubuko.com

C PRIMER PLUS 学习笔记(一)

标签:get   strong      c   学习   har   

原文地址:http://www.cnblogs.com/stayathust/p/3794429.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!