随笔分类 - c
摘要:《Programming Abstractions In C》学习第61天,p184-p195总结。 一、技术总结 1.mutual recursion 2.natural number (1)定义 p184, If you limit the domain of possible values t
阅读全文
摘要:一、问题描述 #include <stdio.h> #define MAXLINE 1000 /* maximum input line length */ int getline(char lines[], int maxline); void copy(char to[], char from[
阅读全文