随笔分类 -  【C】

如果哪天你失去了色彩,我愿守望着天空,寻找你的星座.....
【C11】float
摘要:The header defines several macros that expand to various limits and parameters of the standard floating-point types 阅读全文

posted @ 2014-04-01 18:43 至死丶不渝 阅读(149) 评论(0) 推荐(0)

【C11】fenv
摘要:The header defines several macros, and declares types and functions that provide access to the floating-point environment 阅读全文

posted @ 2014-04-01 16:47 至死丶不渝 阅读(323) 评论(0) 推荐(0)

【C11】errno
摘要:The header defines several macros, all relating to the reporting of error conditions#define _CRT_SECURE_NO_WARNINGS#include #include #include #include int main(int argc, char *argv[]){ sqrt(-1.0); printf("%d %s\n", errno, strerror(errno)); return 0;} 阅读全文

posted @ 2014-04-01 05:25 至死丶不渝 阅读(153) 评论(0) 推荐(0)

【C11】ctype
摘要:The header declares several functions useful for classifying and mapping charactersisalnumany character for which isalpha or isdigit is trueisaphaany character for which isupper or islower is trueisblankany character that is a standard blank characteriscntrlany control characterisdigitany decimal-d. 阅读全文

posted @ 2014-04-01 04:05 至死丶不渝 阅读(168) 评论(0) 推荐(0)

【C11】complex
摘要:The headerdefines macros and declares functions that support complex arithmetic 阅读全文

posted @ 2014-04-01 02:39 至死丶不渝 阅读(157) 评论(0) 推荐(0)

【C11】assert
摘要:The assert macro puts diagnostic tests into programs#define NDEBUG#include int main(int argc, char *argv[]){ assert(0); return 0;} 阅读全文

posted @ 2014-04-01 00:39 至死丶不渝 阅读(140) 评论(0) 推荐(0)

导航