I have the following code example (in windows):

int fd = _dup(fileno(stdout));
freopen("tmp","w",stdout);

printf("1111");
close(stdout);

char buf[100];

FILE *fp;   
fp = fopen("tmp","r");//in this line fd turns to be 0
if(NULL == fp) return -1;
if(fgets(buf,100 , fp) != NULL );
else return -1
fclose(fp);

I need the value of fd for the futher use.How can I read from file without losing the fd value?

link|improve this question

There is no way the indicated line can affect the value of fd. You must have an error somewhere else in your code. – Klas Lindbäck Oct 11 '11 at 11:21
@ Klas Lindbäck - no.this is exactly the code.I debug it and see that the fd value is 3 until indicated line – Yakov Oct 11 '11 at 11:33
Can't be. fgets(buf,100 , fp) != NULL ); doesn't even compile. I tried it in Linux, and after correcting the syntax error the value of fd was 3 when the program ended. – Klas Lindbäck Oct 11 '11 at 11:59
Klas Lindbäck - sory it was a typo .In the question is wrote that the problem is regarding windows – Yakov Oct 11 '11 at 12:03
1  
I saw that it was in windows, but that should not matter. Maybe the debugger is flawed? Have you tried printing the value of fd? – Klas Lindbäck Oct 11 '11 at 12:22
show 1 more comment
feedback

1 Answer

up vote 0 down vote accepted

I bet that either buf is declared smaller than 100 or the fgets call is in fact with a number larger than 100.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.