2

当我运行程序并回答“是”时,它告诉我我错了。有人知道执行此类程序的方法吗?

#include <string.h>
#include <stdio.h>
int strcmp(const char *str1,const char *str2 );

// I am trying to make a program that asks the user to input an answer 
int main() 
{
    char answer[20];


    printf("Can birds fly?\n");   
    scanf("%s", &answer[20]);    


    if(strcmp(answer, "yes") == 0)  
    {
        printf("You are right"); 
    }else
    {
        printf("You are worng"); 
    }

    return 0; 
}
4

1 回答 1

5

更改此行:

scanf("%s", &answer[20]); 

至:

scanf("%s", answer);

您必须传递到scanf要放置字符串的地址,然后选择字符串answer[20]中第 21 个字符的值(未定义,因为字符串只有 20 个字符),然后获取指向它的指针(垃圾,您甚至可以获得访问冲突)。

于 2012-11-30T19:13:49.807 回答