hi .
i have read a line from a text file & stored it in a string using fgets().
the file contains the following line:
C:\Windows\
char myline[20];
fgets(myline,20,fp);
now i want to append '\' in the string so that when i print myline output is
C:\\Windows\\
Any idea or algo how to do this in C ?