fgets函数用法

fgets函数用法_第1张图片
fgets函数用法_第2张图片
fgets函数用法_第3张图片
fgets函数用法_第4张图片
fgets函数用法_第5张图片
fgets函数用法_第6张图片
fgets函数用法_第7张图片
注意一个问题:
fgets的返回值指向的是缓冲区的地址,缓冲区的内容变了,fgets的返回值指向的内容自然就变了。
例如:
printf(“pget = %s\n”, pget);
在调用fread函数之前和之后,printf打出的内容是不同的。
fgets函数用法_第8张图片

你可能感兴趣的:(Linux,C)