+ 1
Declare an initially empty string array in c, and depending on user entry (char input).
Declare an initially empty string array in c. And depending on user entry (char input). How can I append these chars to the array?
3 Respostas
+ 1
Thank you, this is very helpful
+ 2
Use char array and via using scanf store values and increment position From 0 to n
+ 1
Thank you, is using strcat(my_str, my_char) correct?