这个简单的问题引起了我的整个计划到第一输入时发生崩溃。 如果我删除输入,程序工作正常,但一旦我添加到scanf函数代码并进入输入程序崩溃。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAXEMPS 3
// stub program code
int main (void){
char answer;
do
{
printf("\n Do you have another(Y/N): ");
scanf("%c", answer);
}while(answer == 'Y' || answer == 'y');
getchar();
printf(" Press any key ... ");
return 0;
} // main