这是我在 main() 末尾的代码:
printf("Would you like to find data on another 20 rods? \nType C and press enter to continue, or type E and press enter to exit \n");
scanf("%s",&exitOption);
if (exitOption == 'C'){
main();
}
return 0;
每次我运行程序时,我都会收到此错误:
为什么?我该如何解决?