05 2021 档案

摘要:1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 #define LEN 40 5 int main(int argc, char const *argv[]) 6 { 7 FILE *in, *out; 8 cha 阅读全文
posted @ 2021-05-31 21:17 wcl王成龙 阅读(48) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-05-30 21:13 wcl王成龙 阅读(29) 评论(0) 推荐(0)
摘要:1 #include <stdio.h> 2 #include <math.h> 3 #include <string.h> 4 int i = 9; 5 void a() 6 { 7 i = 90; 8 printf("%d ", i); 9 } 10 int main(void) 11 { 12 阅读全文
posted @ 2021-05-29 20:37 wcl王成龙 阅读(55) 评论(0) 推荐(0)
摘要:#include <stdio.h> int main(void) { int n = 8; printf("%d %p\n", n, &n); for (int n = 1; n < 3; n++) { printf("%d %p\n", n, &n); } printf("%d % 阅读全文
posted @ 2021-05-25 19:42 wcl王成龙 阅读(38) 评论(0) 推荐(0)
摘要:int main(void) { for (int i = 0; i < 2; i++) { to:printf("%d ", i); } goto to; return 0; } 阅读全文
posted @ 2021-05-25 18:59 wcl王成龙 阅读(39) 评论(0) 推荐(0)
摘要:int question15(char *string) { bool minus_punctuation = false; int sum = 0; if (*(string + 0) == '-') { minus_punctuation = true; string++; } while (* 阅读全文
posted @ 2021-05-25 18:03 wcl王成龙 阅读(42) 评论(0) 推荐(0)
摘要:Let's Talk About...Burnout starts to return to normal || decreasing sense of accomplishment. || emotion exhaustion || have to have || would you say th 阅读全文
posted @ 2021-05-25 09:35 wcl王成龙 阅读(126) 评论(2) 推荐(0)
摘要:if (!isspace(*string) && !check) { words++; check = true; } if (isspace(*string) && check) { check = false; } 阅读全文
posted @ 2021-05-24 20:27 wcl王成龙 阅读(36) 评论(0) 推荐(0)