0
linked list C
why the added name and surname in my code is not printed and what should I do to fix it https://code.sololearn.com/cPhcCkl77a8d/?ref=app
2 ответов
+ 3
You can't assign values to static char arrays. You need to use strncpy to copy the required string.
https://code.sololearn.com/c6s5IFSXMXdu/?ref=app
+ 1
thank you sir.