how to remove /n from string in c code example
Example 1: how to remove \n from a string c
str[strcspn(str, "\n")] = 0;
Example 2: remove \n from string c
strtok(Name, "\n");
str[strcspn(str, "\n")] = 0;
strtok(Name, "\n");