Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
6answers
3k views

What's the difference between a file descriptor and file pointer?

I want to know the difference between a file descriptor and file pointer. Also, in what scenario would you use one instead of the other?
3
votes
3answers
2k views

How to find the current line position of file pointer in C?

How can I get the current line position of the file pointer?
2
votes
4answers
84 views

C file pointers, multiple reads on stdin

I have an existing program where a message (for example, an email, or some other kind of message) will be coming into a program on stdin. I know stdin is a FILE* but I'm somewhat confused as to what ...
2
votes
3answers
126 views

Whats is difference between file descriptor and file pointer? [closed]

Possible Duplicate: What's the difference between a file descriptor and file pointer? If I open file like this: FILE *fp = fopen("mr32.txr","r"); then fp is file pointer or file ...
1
vote
3answers
517 views

Passing file pointer into functions, and file not being read correctly

I think my problem with my code that the file is not being passed correctly. The input is a file with three lines 1 2 3; 4 5 6; 7 8 9; and the output is a Segmentation fault (core dumped), the output ...
1
vote
3answers
345 views

Opening a file in 'a+ 'mode

If a file is opened using the following command: FILE *f1=fopen("test.dat","a+"); The man page reads: a+ Open for reading and appending (writing at end of file). The ...
1
vote
1answer
346 views

ftell on a file descriptor?

Is there a way to do what ftell() does (return the current position in the file) on a raw file descriptor instead of a FILE*? I think there ought to be, since you can seek on a raw file descriptor ...
0
votes
4answers
104 views

Program doesn't wait for user input with scanf(“%c”,&yn);

This is the basic code to a program I am writing to practise using files in C. I am trying to detect whether the output file already exists and if it does exist I want to ask the user if they would ...
0
votes
3answers
100 views

Struggling to understand file pointers?

Main description of the problem below, where it happens. But simply, I cannot figure out why I get error messages after asking if (outf!=NULL){ printf("Output file already exists, overwrite ...
0
votes
3answers
105 views

Advance File Pointer to skip over number in a file

I was wondering If I could jump positions in a text file. Suppose I have this file. 12 8764 2147483648 2 -1 Whenever I try to read the third number it won't read because its larger than the max ...
0
votes
5answers
126 views

Is there a file pointer (FILE*) that points to nothing?

For some reasons I need a file pointer (FILE*) that points to nothing. It means I can pass it to fprintf function and fprintf ignore the file pointer. for example: void my_function() { FILE* ...
0
votes
4answers
212 views

How to manipulate the file pointer in Perl

So I am reading through a calendar file to insert a date into the file and I want the dates to remain in chronoligical order. The problem comes when I find the place where the date should go, the file ...