Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I must be losing my mind :-(. I am not sure but I get yes and no displaying if I type in 2...

int main(void)
{
    int input;
    char yes[3] = "yes";
    char no[2] = "no";
    printf("Are you ok? Type in 1 for yes or 2 for no.\n");
    scanf("%d", &input);

    if (input == 1)
       printf("%s, I am\n.", yes);
    else
       printf("%s, I am not\n.", no);
    getchar();
    getchar();
}
share|improve this question
9  
This question lacks one critical component... a question. – FatalError Feb 27 at 22:55
2  
C strings are NULL terminated. That is, they have a zero value ('\0') at the very end. You aren't leaving room for that NULL terminator, thus they don't have a well-defined end. – Cornstalks Feb 27 at 22:56
1  
yes and no are not strings. You cannot use them with the printf "%s" conversion specifier – pmg Feb 27 at 22:57

1 Answer

char yes[3] = "yes";

You need 4 characters in your array.

 char no[2] = "no";

You need 3 characters in your array.

Otherwise C won't null terminate your arrays.

A better approach would be to let the size be handled automatically at build time:

char no[] = "no";
char yes[] = "yes";
share|improve this answer
2  
Yep, and as its statically allocated, in most cases they'll be contained as "yesno" in memory, instead of "yes\0no\n", which is why he gets the yes and no displayed. – SeedmanJ Feb 27 at 22:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.