码迷,mamicode.com
首页 > 其他好文 > 详细

15)文件函数例子

时间:2018-01-02 20:01:23      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:col   stdio.h   span   直接   fputs   blog   pos   键盘   asd   

1.fputc和 fgetc函数

 1 #include<stdio.h>
 2 int main()
 3 {
 4     char a;
 5     fputs("dasd\n",stdout);//这个是直接在屏幕上显示,并不会出现在缓冲区中
 6 
 7 
 8     //同时  我用fgets(stdin)  这个是用键盘直接入入,没有所谓的文件
 9     
10     a=fgetc(stdin);
11     printf("%c\n",a);
12     return 0;
13 }

 

15)文件函数例子

标签:col   stdio.h   span   直接   fputs   blog   pos   键盘   asd   

原文地址:https://www.cnblogs.com/xiaoyoucai/p/8178643.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!