割り当てとして、ユーザの入力を受け取り、それらの操作を実行してから画面に出力するコードを記述する必要があります。しかし、18行目でFunctionMultiplyを呼び出すと、関数が 'double(_cdecl *)()'を 'double'に変換できないというエラーが表示され続けます。私はこのタイプの問題を探しましたが、それらのすべてが自分のコードにない配列と関係しているようです。これをどうすれば解決できますか?は 'double(_cdecl *)()'を 'double'に変換できません
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <ctype.h>
int GetInt(void);
double GetDouble();
char GetLetter(void);
double FunctionMultiply(int, double);
int FunctionCharacter(char);
int main()
{
GetInt();
GetDouble();
GetLetter();
FunctionMultiply(GetInt, GetDouble);
FunctionCharacter(GetLetter);
printf("%f", FunctionMultiply);
printf("%c", FunctionCharacter);
return 0;
}
int GetInt(void)
{
int integer;
printf("Enter an integer\n");
scanf("%i", &integer);
return integer;
}
double GetDouble()
{
double dub;
printf("Enter a floating point number\n");
scanf(" %lf", &dub);
return dub;
}
char GetLetter(void)
{
char letter;
printf("Enter a letter\n");
scanf(" %c", &letter);
return letter;
}
double FunctionMultiply(int arg1, double arg2)
{
double product = arg1 * arg2;
return product;
}
int FunctionCharacter(char letter)
{
if (toupper(letter) <= 'M')
{
return 0;
}
else
{
return 1;
}
}
FunctionCharacter(GetLetter()); –
[mcve]でもっと楽になります – anatolyg