上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 69 下一页
摘要: 1. 文件和流的关系 C将每个文件简单地作为顺序字节流(如下图)。每个文件用文件结束符结束,或者在特定字节数的地方结束,这个特定的字节数可以存储在系统维护的管理数据结构中。当打开文件时,就建立了和文件的关系。 在开始执行程序的时候,将自动打开3个文件和相关的流:标准输入流、标准输出流和标准错误。... 阅读全文
posted @ 2014-04-06 12:17 二郎那个三郎 阅读(30432) 评论(3) 推荐(4) 编辑
摘要: fseek库函数#include int fseek(FILE *stream, long int offset, int origin);返回:成功为0,出错为非0 对流stream相关的文件定位,随后的读写操作将从新位置开始。对于二进制文件,此位置被定位在由origin开始的offse... 阅读全文
posted @ 2014-04-06 10:58 二郎那个三郎 阅读(1050) 评论(0) 推荐(0) 编辑
摘要: The standard library function calloc(n,size) returns a pointer to n objects of size size , with the storage initialized to zero. Write calloc , by cal... 阅读全文
posted @ 2014-04-06 10:50 二郎那个三郎 阅读(507) 评论(0) 推荐(0) 编辑
摘要: Write a function reverse(s) that reverses the character string s . Use it to write a program that reverses its input a line at a time. #include #defin... 阅读全文
posted @ 2014-04-06 10:48 二郎那个三郎 阅读(1499) 评论(0) 推荐(0) 编辑
摘要: Write a program to remove all trailing blanks and tabs from each line of input, and to delete entirely blank lines. 其实做这道题目有两种思路: 1.后向模式:利用getline()先... 阅读全文
posted @ 2014-04-06 10:19 二郎那个三郎 阅读(930) 评论(0) 推荐(0) 编辑
摘要: Revise the main routine of the longest-line program so it will correctly print the length of arbitrarily long input lines, and as much as possible of ... 阅读全文
posted @ 2014-04-06 09:51 二郎那个三郎 阅读(1854) 评论(0) 推荐(0) 编辑
摘要: Write a program to print a histogram of the lengths of words in its input. It is easy to draw the histogram with the bars horizontal; a vertical orien... 阅读全文
posted @ 2014-04-06 09:27 二郎那个三郎 阅读(1061) 评论(0) 推荐(1) 编辑
摘要: How would you test the word count program? What kinds of input are most likely to uncover bugs if there are any? 你会如何测试前面的字符统计程序呢?什么样的测试输入,最能揭示你程序中的bu... 阅读全文
posted @ 2014-04-06 08:58 二郎那个三郎 阅读(748) 评论(0) 推荐(0) 编辑
摘要: Write a program to copy its input to its output, replacing each string of one or more blanks by a single blank. 编写这样一个程序,实现将输入流复制到输出流,但是要将输入流中多个空格过... 阅读全文
posted @ 2014-04-06 08:23 二郎那个三郎 阅读(1027) 评论(0) 推荐(0) 编辑
摘要: 日期与时间函数头文件中说明了一些用于处理日期和时间的类型和函数。其中的一部分函数用于处理当地时间,因为时区等原因,当地时间与日历时间可能不相同。clock_t和time_t是两个用于表示时间的算术类型,而struct tm则用于存放日历时间的各个成分。tm的各个成员的用途及取值范围如下:int tm... 阅读全文
posted @ 2014-04-05 21:24 二郎那个三郎 阅读(25333) 评论(0) 推荐(0) 编辑
上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 69 下一页