初学者问题。我有以下代码:
char input[10];
scanf("%s", &input);
我的编译器抛出以下警告:
warning: format '%s' expects type 'char *', but argument 2 has type 'char (*)[10]'
warning: format '%s' expects type 'char *', but argument 2 has type 'char (*)[10]'
更改为:
char * input;
似乎没有帮助。我究竟做错了什么?