摘要:
1 #include <stdio.h> 2 3 int brace, brack, paren; 4 5 void in_quote(int c); 6 void in_comment(viod); 7 void search(int c); 8 9 /* rudimentary syntax c 阅读全文
posted @ 2020-04-26 15:28
杪杪
阅读(456)
评论(0)
推荐(0)
摘要:
1 #include <stdio.h> 2 #define MAXCOL 3 /* maximum colum of input*/ 3 #define TABINC 8 /* tab increment size*/ 4 5 char line[MAXCOL]; /* input line*/ 阅读全文
posted @ 2020-04-26 11:23
杪杪
阅读(317)
评论(0)
推荐(0)
摘要:
1 #include <stdio.h> 2 #define TABINC 8 3 4 main() 5 { 6 int c, nb, nt, pos; 7 nb = 0; 8 nt = 0; 9 for(pos = 1; (c = getchar()) != EOF; ++pos) 10 if(c 阅读全文
posted @ 2020-04-26 10:55
杪杪
阅读(330)
评论(1)
推荐(0)
浙公网安备 33010602011771号