This is my code towards the end of 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;
Every time I run the program I get this error:
Why? How can I fix it?