c gets eror question is i the message part | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

c gets eror question is i the message part

#include<stdio.h> // Guys ı want to display that code with using get as i wrote #include<string.h> int main(){ char x[100]; char y[100]; char z[100]; char x1[100]; char y1[100]; char z1[100]; printf("please input your 'name','surname'and'occupation'.\n" ); scanf("%s%s",&x,&y); gets(z); // it doesnt get the z parameter while using get what is the reason ? strcat(x,x1); strcat(y,y1); strcat(z,z1); printf("name %s\n",x); printf("surname %s\n",y); printf("occupation %s\n",z); }

3rd May 2020, 10:35 PM
Abc def
Abc def - avatar
1 Answer
3rd May 2020, 10:49 PM
Ipang