これは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;
プログラムを実行するたびに、次のエラーが発生します。
なんで?どうすれば修正できますか?