473,386 Members | 1,804 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

ow can i use fgets to read and ignore the first two lines of a file and output into another file

Novice programmer needs help with using fgets to read and ignore the
first two lines of a file. I've gone thru the previous posting
regarding fgets, but none of them seems to help my situation.
I have airdata file that i have to read, but in other teh fscanf to
work properly, i need to ignore the first two lines, because scanf does
not read spaces.

This is what my current code looks like

#include <stdio.h>
#include <sting.h>
#include <stdlib.h>

int main()
{
FILE * AirFile; //the file that contains the data to be read
FILE *textFile; //the out file for both lines
char text1[1000];
char text2[100]

if (AirFille == NULL || textFile)
{
printf("Failed to open file \n")
return -1;

else if ( text1[0] =='\n')
{ fgets(text1, 1000, AirFile);
fprintf(textFile, "allocating:", AirFile);
}
}
fclose(textFile);
fclose(AirFile)'

retrun 0;

}

Sep 30 '06 #1
9 3441
Justme wrote:
[...]
This is what my current code looks like
[...]
Please post actual code, not an inaccurate "looks like"
hazy approximation that won't even compile. All the time
spent debugging your `retrun' statement and the other errors
introduced by sloppy transcription is time not spent solving
your actual problem.

--
Eric Sosman
es*****@acm-dot-org.invalid
Sep 30 '06 #2

Eric Sosman wrote:
Justme wrote:
[...]
This is what my current code looks like
[...]

Please post actual code, not an inaccurate "looks like"
hazy approximation that won't even compile. All the time
spent debugging your `retrun' statement and the other errors
introduced by sloppy transcription is time not spent solving
your actual problem.

--
Eric Sosman
es*****@acm-dot-org.invalid

that is my actual code, that is why i'm trying to get help.

Sep 30 '06 #3
Justme wrote:
>
Novice programmer needs help with using fgets to read and ignore the
first two lines of a file. I've gone thru the previous posting
regarding fgets, but none of them seems to help my situation.
I have airdata file that i have to read, but in other teh fscanf to
work properly, i need to ignore the first two lines,
because scanf does
not read spaces.

This is what my current code looks like

#include <stdio.h>
#include <sting.h>
#include <stdlib.h>

int main()
{
FILE * AirFile; //the file that contains the data to be read
FILE *textFile; //the out file for both lines

char text1[1000];
char text2[100]

if (AirFille == NULL || textFile)
{
printf("Failed to open file \n")
return -1;

else if ( text1[0] =='\n')
{ fgets(text1, 1000, AirFile);
fprintf(textFile, "allocating:", AirFile);
}
}
fclose(textFile);
fclose(AirFile)'

retrun 0;

}
That might be a sketch artist's impression of you code,
but that's not what your code looks like.

There is no standard header called <sting.hin C.
There is no "retrun" keyword in C.
Your "else" is not associated with a previous "if".
You don't make any attempt to open the files.

--
pete
Sep 30 '06 #4

"Justme" <he*********@yahoo.comwrote in message
news:11*********************@c28g2000cwb.googlegro ups.com...
>
Eric Sosman wrote:
>Justme wrote:
[...]
This is what my current code looks like
[...]

Please post actual code, not an inaccurate "looks like"
hazy approximation that won't even compile. All the time
spent debugging your `retrun' statement and the other errors
introduced by sloppy transcription is time not spent solving
your actual problem.

--
Eric Sosman
es*****@acm-dot-org.invalid


that is my actual code, that is why i'm trying to get help.
Synatx errors are not the same as logic errors, and are usually picked up by
the compiler at compile time. All keywords must be spelt correctly, as must
all identifiers.

As for ignoring two lines, that is no problem. Simply call fgets() twice
with a big buffer, and ignore the result. Strictly you should check for read
errors, but it's probably best to leave that at present.

--
www.personal.leeds.ac.uk/~bgy1mm
freeware games to download.
Sep 30 '06 #5
Justme wrote:
Eric Sosman wrote:
>>Justme wrote:
>>>[...]
This is what my current code looks like
[...]

Please post actual code, not an inaccurate "looks like"
hazy approximation that won't even compile. All the time
spent debugging your `retrun' statement and the other errors
introduced by sloppy transcription is time not spent solving
your actual problem.

--
Eric Sosman
es*****@acm-dot-org.invalid

that is my actual code, [...]
Then it is beyond my poor powers to debug. Have a
nice life!

--
Eric Sosman
es*****@acm-dot-org.invalid
Oct 1 '06 #6
"Justme" <he*********@yahoo.comwrote in message
news:11*********************@c28g2000cwb.googlegro ups.com...
>
Eric Sosman wrote:
Justme wrote:
<snip>
that is my actual code, that is why i'm trying to get help.
Well here's a the code with proper formatting but I havn't done
anything concerning files and can't be bothered looking it up for you
but maybe without all the other errors you'll be able to figure it
out:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

int main() {

FILE *AirFile; /*the file that contains the data to be read*/
FILE *textFile; /*the out file for both lines*/

char text1[1000];
char text2[100];

if (AirFile == NULL || textFile == NULL) {
printf("Failed to open file \n");
return -1;

if ( text1[0] =='\n') {
fgets(text1, 1000, AirFile);
fprintf(textFile, "allocating:", AirFile);
}
}

fclose(textFile);
fclose(AirFile);
return 0;
}
Oct 1 '06 #7
"Justme" <he*********@yahoo.comwrites:
Novice programmer needs help with using fgets to read and ignore the
first two lines of a file. I've gone thru the previous posting
regarding fgets, but none of them seems to help my situation.
I have airdata file that i have to read, but in other teh fscanf to
work properly, i need to ignore the first two lines, because scanf does
not read spaces.

This is what my current code looks like

#include <stdio.h>
#include <sting.h>
#include <stdlib.h>

int main()
{
FILE * AirFile; //the file that contains the data to be read
FILE *textFile; //the out file for both lines
Files never got opened.
char text1[1000];
char text2[100]

if (AirFille == NULL || textFile)
AirFile and textFile are not initialised thus the condition is true or
false depending on position of the Sun.
{
printf("Failed to open file \n")
return -1;

else if ( text1[0] =='\n')
Unexpected "else". Plus text1[0] is uninitialised (so again condition
depends on position of the stars) plus it (sort of) checks for empty
lines only.
{ fgets(text1, 1000, AirFile);
fprintf(textFile, "allocating:", AirFile);
}
}
fclose(textFile);
fclose(AirFile)'

retrun 0;

}
Here's the way to do it with stdin/stdout:

#v+
#include <stdio.h>

int main(void) {
char buffer[1024];
size_t num = 2;

while (num && fgets(buffer, sizeof buffer, stdin)) {
const char *ch = buffer;
while (*ch && *ch!='\n') ++ch;
if (*ch) --num;
}

while (!feof(stdin) && !ferror(stdin) &&
(num = fread(buffer, 1, sizeof buffer, stdin)) &&
num == fwrite(buffer, 1, num, stdout));

return 0;
}
#v-

--
Best regards, _ _
.o. | Liege of Serenly Enlightened Majesty of o' \,=./ `o
..o | Computer Science, Michal "mina86" Nazarewicz (o o)
ooo +--<mina86*tlen.pl>--<jid:mina86*jabber.org>--ooO--(_)--Ooo--
Oct 1 '06 #8
Michal Nazarewicz said:

<snip>
Here's the way to do it with stdin/stdout:

#v+
No, that's just a syntax error.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
Oct 1 '06 #9
Michal Nazarewicz wrote:
"Justme" <he*********@yahoo.comwrites:
Novice programmer needs help with using fgets to read and ignore the
first two lines of a file. I've gone thru the previous posting
regarding fgets, but none of them seems to help my situation.
I have airdata file that i have to read, but in other teh fscanf to
work properly, i need to ignore the first two lines, because scanf does
not read spaces.

while (num && fgets(buffer, sizeof buffer, stdin)) {
const char *ch = buffer;
while (*ch && *ch!='\n') ++ch;
if (*ch) --num;
}

while (!feof(stdin) && !ferror(stdin) &&
(num = fread(buffer, 1, sizeof buffer, stdin)) &&
num == fwrite(buffer, 1, num, stdout));
Really no need to make it so complicated for 2 initial lines... i.e.
fread() is already heading towards pre-optimization territory, where
you might as well use mmap() (not ansi C however) if you have it.

#include <string.h>
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char **argv)
{
FILE *in;
char buf[128];
size_t i;

if (argc <= 1 || (in = fopen(argv[1], "r")) == NULL)
return -1;

for (i = 0; i < 2 && fgets(buf, sizeof(buf), in); )
if (strchr(buf, '\n')) i++;

while (fgets(buf, sizeof(buf), in)) {
/* won't get here unless we've read 2 lines */
fprintf(stdout, "%s", buf);
}

fclose(in);

return 0;
}

Oct 1 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Rob Somers | last post by:
Hey all I am writing a program to keep track of expenses and so on - it is not a school project, I am learning C as a hobby - At any rate, I am new to structs and reading and writing to files,...
20
by: Paul D. Boyle | last post by:
Hi all, There was a recent thread in this group which talked about the shortcomings of fgets(). I decided to try my hand at writing a replacement for fgets() using fgetc() and realloc() to read...
8
by: Magix | last post by:
Hi, I'm not too sure on reading specify string with the first < > from file stream,and make the file pointer go to next line, with fgets. or any better idea. E.g let say text.txt has...
20
by: TTroy | last post by:
Hello, I have found some peculiar behaviour in the fgets runtime library function for my compiler/OS/platform (Dev C++/XP/P4) - making a C console program (which runs in a CMD.exe shell). The...
35
by: David Mathog | last post by:
Every so often one of my fgets() based programs encounters an input file containing embedded nulls. fgets is happy to read these but the embedded nulls subsequently cause problems elsewhere in...
42
by: mellyshum123 | last post by:
I need to read in a comma separated file, and for this I was going to use fgets. I was reading about it at http://www.cplusplus.com/ref/ and I noticed that the document said: "Reads characters...
20
by: Xavoux | last post by:
Hello all... I can't remind which function to use for safe inputs... gets, fgets, scanf leads to buffer overflow... i compiled that code with gcc version 2.95.2, on windows 2000 char tmp0 =...
9
by: uidzer0 | last post by:
Hey everyone, Taken the following code; is there a "proper" or dynamic way to allocate the length of line? #include <stdio.h> #include <errno.h> int main(int argc, char **argv) { FILE *fp;
24
by: allpervasive | last post by:
hi all, this is reddy, a beginner to c lang,,here i have some problems in reading and modifying the contents of a file,, hope you can help to solve this problem. Here i attach the file to be...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.