「キャストなしの整数からポインターを作成する」というエラーが発生する他の投稿を読みましたが、それが何を意味するのか正確にはわかりません。キャストしない場合、関数gets
はデフォルトで int 変数をポインターにするということですか (キャストの意味は) ですか?input
gets ((int) input
int directions()
{
int input;
printf("Type '1', '2', etc to see a problem or type '(add an 'all' option to see a list of all the problems)\n");
gets( input);
switch ( input) {
case 1: euler1();
case 2: euler2();
}
return input;
}
int main()
{
printf("Welcome to Project Euler's Problems in C!\n");
directions();
return 0;
}