remove newline from string 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");