1. 程式人生 > >c語言中fflush的運用為什麽沒有效果呢,測試平臺linux

c語言中fflush的運用為什麽沒有效果呢,測試平臺linux

*** file 語言 stdlib.h clu author 年齡 blog name

 1 /*************************************************************************
 2     > File Name: clearing.c
 3     > Author: Mr.Yang
 4     > Purpose:演示流中剩余字符的解決方法 
 5     > Created Time: 2017年05月20日 星期六 14時23分25秒
 6  ************************************************************************/
7 8 #include <stdio.h> 9 #include <stdlib.h> 10 11 void clear_kb(void); 12 13 int main(void) 14 { 15 int age = 0; 16 char name[50]; 17 18 printf("Enter your age:"); 19 scanf("%d",&age); 20 //clear_kb(); 21 fflush(stdin);//此處為什麽加入後編譯運行時沒有效果?
22 23 printf("Enter your name:"); 24 scanf("%s",name); 25 26 printf("你的年齡是:%d,你的名字是:%s\n",age,name); 27 return 0; 28 } 29 30 void clear_kb(void) 31 { 32 char clear[1000]; 33 fgets(clear,1000,stdin); 34 }

c語言中fflush的運用為什麽沒有效果呢,測試平臺linux