私はこのCコードを持っています:
#include <stdio.h>
#include <stdlib.h>
int main(){
char *bitstr;
printf("Enter a bitstring or q for quit: ");
scanf("%s", &bitstr);
return 0;
}
次のエラーが表示され続けます。私は何を間違っていますか?
warning: format '%s' expects argument of type 'char *', but
argument 2 has type 'char **' [-Wformat]