我正在用 C 编写一些代码:
int main(){
char guess[15];
guess = helloValidation(*guess);
return 0;
}
我的功能是:
char[] helloValidation(char* des) {
do {
printf("Type 'hello' : ");
scanf("%s", &des);
}while (strcmp(des, "hello") != 0);
return des
}
但它给了我这个错误:
incompatible types in assignment