I am struggling with read a file and remove some characters in the line, I can remove characters any how, but the char * contain so many unknown things.
this is inside of my file. just a one line
localpath=/home/ubu/myDocs
in my code
#include <stdio.h>
#include <strings.h>
char *path;
int main()
{
static const char filename[] = "pathFile";
FILE *file = fopen ( filename, "r" );
if ( file != NULL )
{
char line[512];
while ( fgets ( line, sizeof line, file ) != NULL ) // read a line
{
fputs ( line, stdout ); // write the line
path = strchr(line,'=') +1 ;
}
fclose ( file );
}
else
{
perror ( filename ); // why didn't the file open?
}
}
but the problem is I can't use path, as example chdir(path); is not working, but if I use like this strcpy(path,"/home/ubu/myDocs"); I can use it,
So get am idea I print the char like this
for (i=0, i < 200; i++) printf(path[i]);
in the first case I got some weird character after the("/home/ubu/myDocs") in output, but in the second case I didn't get that kind of things and it works well. I can't understand what to do, I followed so many methods in internet, but same thing happen, Please explain me what happen and give me some solution
p.s I found that in first case chdir return value is < 0, that mean path is wrong no,,,but it consists path and something useless thing
thanks
pathanywhere in this code besides the assignment, but if it is after the if-block where line[] is declared your line[] array would be out of scope. If you need it anywhere past the if-block you should consider setting up another char buffer[] and copying it out. Once line[] is gone (and it is as soon as you leave your if-block) the behavior to access its memory is undefined. – WhozCraig Nov 4 '12 at 9:05