hello
I am trying to open a file which exists on my local PC using fopen
the file is located in
c:\B2B Data\files and is called file.txt
When i put the above into a variable called filename, i cannot open it
ie
char filename[27]="c:\B2B Data\files\file.txt";
i then issue an fp = fopen(filename, "r" );
Any ideas?