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();
}
'\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:56yesandnoare not strings. You cannot use them with the printf"%s"conversion specifier – pmg Feb 27 at 22:57