getchar() 的其他用法

1.有类似于暂停的作用。

例如:

int  n;
char str[100];
scanf("%d",&n);
getchar();
gets(str);

2.在dev c++中也有类似于system("pause"); 的作用。

你可能感兴趣的:(caution)