摘要:
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 = 阅读全文
摘要:
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 阅读全文
摘要:
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: 阅读全文