清空输入的缓冲流,stdin是标准的输入设备,定义为文件指针。。可以视作文件一样输入。。。
[此贴子已经被作者于2005-4-23 23:28:32编辑过]

我们都在命运湖上荡舟划桨,波浪起伏使我们无法逃离孤行;如果我们迷失方向,波浪将指引我们穿过另一天曙光
#include <stdio.h> #include <conio.h>
int main() { char a,b; printf("input a="); scanf("%c",&a); if(a=='a') { /* fflush(stdin); */ printf("input b="); scanf("%c",&b); if(b=='b') printf("ok\n"); } getch(); return 1; } 自己体会一下用和不用所带来的不同效果吧。。。。。。。。。。。