so every time i run my code in c only the second name is displayed,but the first one is never here
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
char name[5];
printf("Enter your name:");
scanf("%s",name);
char secondname[6];
printf("enter your second name:
");
scanf("%s",&secondname);
printf("hello %s
",name);
printf("%s how old are you",secondname);
return 0;
//%d is for integersf
//%s is for strings
}
The output is usually like this:
enter your name:
john
enter your second name:
smith
hello hisham how old are you?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…