2014年4月1日

【HTML】HTML Links

摘要: HTML links are defined with the tag.This is a link 阅读全文

posted @ 2014-04-01 19:03 至死丶不渝 阅读(201) 评论(0) 推荐(0) 编辑

【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 至死丶不渝 阅读(141) 评论(0) 推荐(0) 编辑

【HTML】HTML Paragraphs

摘要: HTML paragraphs are defined with the tag.This is a paragraph.This is a paragraph.This is a paragraph. 阅读全文

posted @ 2014-04-01 17:29 至死丶不渝 阅读(109) 评论(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 至死丶不渝 阅读(280) 评论(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 至死丶不渝 阅读(143) 评论(0) 推荐(0) 编辑

【HTML】HTML Headings

摘要: HTML headings are defined with the to tags.This is heading 1This is heading 2This is heading 3This is heading 4This is heading 5This is heading 6 阅读全文

posted @ 2014-04-01 04:15 至死丶不渝 阅读(214) 评论(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 至死丶不渝 阅读(155) 评论(0) 推荐(0) 编辑

【C11】complex

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

posted @ 2014-04-01 02:39 至死丶不渝 阅读(152) 评论(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 至死丶不渝 阅读(135) 评论(0) 推荐(0) 编辑

2014年3月30日

【Mysql】select

摘要: create database Susake;use Susake;create table Test(a int, b int);insert into Test values(1, 2);select *from Test; 阅读全文

posted @ 2014-03-30 15:16 至死丶不渝 阅读(118) 评论(0) 推荐(0) 编辑

导航