Click here to Skip to main content
16,011,883 members

Comments by Member 7660635 (Top 5 by date)

Member 7660635 28-Feb-11 8:13am View    
Please find the code below:

FILE *fp;
TCHAR str[100];
fp = _tfopen("D:\\myfile.csv", _T("rb"));
while( _fgetts( str, 100, fp ))
{
//do something......
}
Member 7660635 28-Feb-11 8:07am View    
I am observing the garbage characters inside Visual Studio IDE while debugging. I am using VS6.0.
Member 7660635 28-Feb-11 5:53am View    
Thanks for your quick response.
I tried this but could not resolve.
Member 7660635 28-Feb-11 5:10am View    
I tried both _fgetts() and fgetws() but could not resolve it.
Member 7660635 28-Feb-11 5:08am View    
Thanks for your response. I tried this but it did not work. Here is the my code
//required for the locale function
#include <locale.h>

void yourFunction()
{
//changed locale settings for the current thread only to french
setlocale(LC_ALL, "French");
FILE *fp = fopen("D:\\myfile.csv","r");
while(fgets(str,1000,fp))
{
// do something
}
}

"str" still contains garbage values.