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;
} 9 3403
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
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.
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
"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.
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
"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;
}
"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--
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)
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;
} This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
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,...
|
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...
|
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...
|
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...
|
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...
|
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...
|
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 =...
|
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;
|
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...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: giovanniandrean |
last post by:
The energy model is structured as follows and uses excel sheets to give input data:
1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
|
by: NeoPa |
last post by:
Hello everyone.
I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report).
I know it can be done by selecting :...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM)
Please note that the UK and Europe revert to winter time on...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
|
by: isladogs |
last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM).
In this month's session, Mike...
|
by: GKJR |
last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...
| |