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 }
标签: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 }
标签:col stdio.h span 直接 fputs blog pos 键盘 asd
原文地址:https://www.cnblogs.com/xiaoyoucai/p/8178643.html