摘要: 1 #include <stdio.h> 2 3 int main() 4 { 5 int i = 9; 6 int j = 67; 7 int k = 34; 8 int max = 0; 9 #if 0 10 11 if(i >= j) 12 max = i; 13 else 14 max = 阅读全文
posted @ 2014-10-28 19:49 Qt小罗 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 struct person{ 4 int age; 5 struct person *next; 6 }; 7 8 struct person *insert(struct person *head, int 阅读全文
posted @ 2014-10-28 19:24 Qt小罗 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 3 int main() 4 { 5 char *source = "hello world\n"; 6 char dest[1024] = {0}; 7 char *p = dest; 8 char c = '\0'; 9 #if 0 10 loop: 阅读全文
posted @ 2014-10-28 19:20 Qt小罗 阅读(599) 评论(0) 推荐(0) 编辑