随笔分类 -  C

C语言
摘要:From: http://www.cnblogs.com/killerlegend/p/3946768.html Author:KillerLegend Date:2014.8.30 MingW的配置教程在这儿: http://www.cnblogs.com/killerlegend/p/37465... 阅读全文
posted @ 2014-08-30 19:43 KillerLegend 阅读(2181) 评论(0) 推荐(0)
摘要:From:http://www.cnblogs.com/killerlegend/p/3877703.htmlAuthor:KillerLegendDate:2014.7.30此处程序的测试时间精确到毫秒级别,第一种方式是在程序中测定,第二种是编写一个专门用于测试程序运行时间的命令行程序.下面分别介... 阅读全文
posted @ 2014-07-30 12:09 KillerLegend 阅读(19941) 评论(0) 推荐(0)
摘要:1 #include 2 #include 3 #include 4 #define LEN sizeof(struct Student) 5 struct Student 6 { 7 long num; 8 float score; 9 struct Student*next; 10 }; 11 int n; 12 int main() 13 { 14 /*-----------------------------程序描述-------------------------------------------- 15 题... 阅读全文
posted @ 2013-12-06 18:36 KillerLegend 阅读(457) 评论(0) 推荐(0)