Windows用のPellesコンパイラを使用しています。2つのエラーが発生しました
#2168: Operands of '&' have incompatible types 'char *' and 'char *'.
#2140: Type error in argument 1 to 'scanf'; expected 'const char * restrict' but found 'int'.
私のコードは次のようになります
#include <stdio.h>
static char herp[20];
int main()
{
int a;
a = 2;
printf("Some random number %d\n" ,a);
scanf("Input: %c" &herp);
getchar();
return 0;
}
scanf で多くの問題が発生しているように見えるので、その理由はわかりません。私はCに非常に慣れていませんが、これまでのところとても楽しんでいます。助けていただければ幸いです。