Code::Blocks Forums

User forums => Embedded development => Topic started by: cesar7160 on May 20, 2009, 04:28:09 pm

Title: What code is it used to read & write text files in C?
Post by: cesar7160 on May 20, 2009, 04:28:09 pm
What code is it used to create, read & write text files in C?

Where can i find a tutorial or a guide?
Title: Re: What code is it used to read & write text files in C?
Post by: cesar7160 on May 20, 2009, 05:44:03 pm
I found it, here it is:


#include <stdio.h>

int main ( void )

{

static const char filename[] = "file.txt";

FILE *file = fopen ( filename, "r" );

if ( file != NULL )

{

char line [ 128 ]; /* or other suitable maximum line size */

 

while ( fgets ( line, sizeof line, file ) != NULL ) /* read a line */

{

fputs ( line, stdout ); /* write the line */

}

fclose ( file );

}

else

{

perror ( filename ); /* why didn't the file open? */

}

return 0;

}
Title: Re: What code is it used to read & write text files in C?
Post by: ollydbg on May 20, 2009, 05:46:21 pm
Off topic here... :shock:
Take care for being locked.
Title: Re: What code is it used to read & write text files in C?
Post by: Jenna on May 21, 2009, 06:37:48 am
Off topic here... :shock:
Take care for being locked.

Locked !