In C# when you need to manipulate files you can use the @ symbol to avoid changing the "\" in the files name.
Example:
string fileName = @"C:\Users\username\Documents\text.txt";
But in C I can't use the @ symbol. So I have to replace "\" for "/" or use "\ \":
fopen = ("C:/Users/username/Documents/text.txt","r");
or
fopen = ("C:\\Users\\username\\Documents\\text.txt","r");
Is there some trick in C for avoid all this work?