A pointer set to a file.
I want to know the difference between a file descriptor and file pointer. Also, in what scenario would you use …
c file-descriptor file-pointerThis is the basic code to a program I am writing to practise using files in C. I am trying …
c scanf file-pointerHow can I get the current line position of the file pointer?
c file pointers file-io file-pointerIf a file is opened using the following command: FILE *f1=fopen("test.dat","a+"); The man page reads: a+ …
c file file-io fopen file-pointerI think my problem with my code that the file is not being passed correctly. The input is a file …
c file-pointerIs there a way to do what ftell() does (return the current position in the file) on a raw file …
linux file-descriptor ftell file-pointerPossible Duplicate: Getting Filename from file descriptor in C How get fileName having FILE*? Is there any way where I …
c filenames file-pointerI saw this code somewhere: #include<stdio.h> int main() { FILE * fp; char s[1024]; fp = fopen("file","r"); …
c file-io scanf file-pointerI have a frustrating problem. I am getting the following error: incompatible pointer types passing 'char*' to parameter of …
c pointers file-pointer