Skip to main content

C Program Usage fseek fopen ftell and fprintf

I need a c program to write update values in a file. Here is simple logic for it.
steps.
open file.
set the file pointer using fseek. (same as lseek)
write the value.
close the file.
int fseek(FILE *stream, long offset, int whence);

off_t lseek(int fildes, off_t offset, int whence);
The lseek function repositions the offset of the file descriptor fildes to the argument
offset according to the directive whence as follows:

SEEK_SET
The offset is set to offset bytes.

SEEK_CUR
The offset is set to its current location plus offset bytes.

SEEK_END
The offset is set to the size of the file plus offset bytes.

Some more notes on this;
From step one one can open file in read mode or r+ mode; then in second step set the file pointer to the end of file using fseek, with SEEK_END.
using fprintf update the values in file.

The other way to do this is open file in append mode, then no need to setting file pointer, as if file is opened in append mode; the file pointer will be set at end of file;

here is c code snippet.

#include

int main()
{
FILE *fptr;
int pos;
fptr = fopen("root","a");

if(fptr != NULL)
{
fprintf(fptr,"%s\n","test");
pos= ftell(fptr);

printf("pos %d\n",pos);
}
else
printf("can't open file\n");
fclose(fptr);
return 0;
}

Comments

Popular posts from this blog

ahsec results 2008 | www.ahsec.nic.in

The official website of assam higher secondary education council Results of Assam is down seems they are uploading results , direct link to check ahsec results 2008 is http://resultsassam.nic.in/index.asp You can find results of AHSEC at the link above. current page The Website www.ahsec.nic.in Designed Developed & Hosted by NIC, Assam State Centre, Guwahati is down for result uploading. keep checking this page, I will update as soon as news comes. All the best to AHSEC - assam higher secondary education council students. Direct links http://assam.nic.in/ www.ahsec.nic.in http://resultsassam.nic.in/

Rajasthan Board 10th Results | rajedubord.nic.in | RBSE

Raj Board of Secondary Education, Rajasthan Results at rajeduboard.nic.in Board of Secondary Education, Rajasthan Ajmer declared result of secondary examination today at 4PM official site is rajedubord.nic.in check Secondary Examination- 2008 Result (To be announced on July 1st, 2008 at 4:00 PM) source http:// rajresults.nic.in / Declared result Praveshika Examination-2008 Result (Announced on June 25, 2008 at 4:00 PM) The history of the Board of Secondary Education Rajasthan (BSER) is a remarkable panorama of progressive record of the futurological vision for developing a dynamic system of various sub-systems of examinations and highlights of the academic excellence of the last four decades. The BSER took rapid strides for promotion and development of Secondary Education in Rajasthan, spread over 3,42,239 sq. km. and in more than 6000 schools located in 32 districts involving 8.5 lakhs students for Secondary and Senior Secondary Examination in the year 2000. At present the Board is ...