Sponsored Content
Full Discussion: fscanf()
Top Forums Programming fscanf() Post 17106 by j_t_kim on Monday 11th of March 2002 10:16:24 AM
Old 03-11-2002
fscanf()

I keep trying to use fscanf() and for some reason I can't get the syntax down and always get seg faults. I'm on a SunOS 5.5.1, and my current code looks like this:

int n1, n2, n3, n4, n5, n6;

/* open config file */
if (fileptr = fopen(filename,"r") == NULL) {
printf("couldn't open file, errno: %d\n", errno);
exit(0);
}

fscanf(fileptr, "%d %d %d %d %d %d", &n1, &n2, &n3, &n4, &n5, &n6);


(end)
######### FIRST LINE FILE LOOKS LIKE THIS #######
4500 4017 1 0 1 2

I've been trying to get past this for hours now and was hoping someone could offer some advice or explanation as to why it keeps seg faulting. THANKS!
 

7 More Discussions You Might Find Interesting

1. Programming

fscanf()

thanks to everyone for your earlier replies, but i have yet another problem with file i/o. i'm trying to read multiple lines with the same file, and have been using the following code to take in the first two lines from a file... fscanf(fileptr, "%d %d %d %d %d %d\n", &n1, &n2, &n3, &n4, &n5,... (1 Reply)
Discussion started by: j_t_kim
1 Replies

2. Programming

fscanf

Hi, Can any one tell me what "%hx" as control parameter mean in fscanf. Thanks, abey (4 Replies)
Discussion started by: abey
4 Replies

3. Programming

read a file wich fscanf() in a function

I use fopen, fscanf, fclose to read a file. It can work well. since many files should be read, a function is created with the same code. But in the function, fscanf can not work well. for example, the first line of the the file is: > filename but the fscanf will give: 207/23/eee/34 it appears... (2 Replies)
Discussion started by: cdbug
2 Replies

4. Programming

C, using fscanf

hey guys, I'm working on a term project for a c/unix class. The basis of the program is that it will calculate the weight/balance of a plane. I'm hoping to have an input file as such: " Pilot weight: Passenger weight: baggage wieght: etc " and the idea is that I'm trying to use... (2 Replies)
Discussion started by: jlangholzj
2 Replies

5. Programming

fscanf: read words from file

Hi I have a file like that: 1 2 3 4 5 6 7 8 and I want print on stdout: 1 3 8 in other words i want choose what print out. I was thinking to use fscanf as: fscanf(file_in,"%d %d %d",&a, &b,&c); but in this way i get: 1 2 3 Is there a solution using fscanf to obtain my... (2 Replies)
Discussion started by: Dedalus
2 Replies

6. UNIX for Dummies Questions & Answers

how fscanf every two data

hi there... i have a question regarding the fscanf function... let's say i have a data: 1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 how do i read only the first COLUMN, or the second COLUMN or the third COLUMN or etc....?????? thanks (1 Reply)
Discussion started by: theunknown
1 Replies

7. Programming

Fscanf to get number and replace.

Hi, I have a file with contents like "abcd 1234" .What i need is get that integer and replace that with 0. So i used fscanf(fp,"%s %d", str, &num); This is having some problem. There can be multiple space/tab between string and number. How to replace that number with 0 in same file? (4 Replies)
Discussion started by: explore
4 Replies
fgetwc(3C)						   Standard C Library Functions 						fgetwc(3C)

NAME
fgetwc - get a wide-character code from a stream SYNOPSIS
#include <stdio.h> #include <wchar.h> wint_t fgetwc(FILE*stream); DESCRIPTION
The fgetwc() function obtains the next character (if present) from the input stream pointed to by stream, converts that to the correspond- ing wide-character code and advances the associated file position indicator for the stream (if defined). If an error occurs, the resulting value of the file position indicator for the stream is indeterminate. The fgetwc() function may mark the st_atime field of the file associated with stream for update. The st_atime field will be marked for update by the first successful execution of fgetwc(), fgetc(3C), fgets(3C), fgetws(3C), fread(3C), fscanf(3C), getc(3C), getchar(3C), gets(3C), or scanf(3C) using stream that returns data not supplied by a prior call to ungetc(3C) or ungetwc(3C). RETURN VALUES
Upon successful completion the fgetwc() function returns the wide-character code of the character read from the input stream pointed to by stream converted to a type wint_t. For standard-conforming (see standards(5)) applications, if the end-of-file indicator for the stream is set, fgetwc() returns WEOF whether or not the stream is at end-of-file. If a read error occurs, the error indicator for the stream is set, fgetwc() returns WEOF and sets errno to indicate the error. If an encoding error occurs, the error indicator for the stream is set, fgetwc() returns WEOF, and errno is set to indicate the error. ERRORS
The fgetwc() function will fail if data needs to be read and: EAGAIN The O_NONBLOCK flag is set for the file descriptor underlying stream and the process would be delayed in the fgetwc() opera- tion. EBADF The file descriptor underlying stream is not a valid file descriptor open for reading. EINTR The read operation was terminated due to the receipt of a signal, and no data was transferred. EIO A physical I/O error has occurred, or the process is in a background process group attempting to read from its controlling terminal and either the process is ignoring or blocking the SIGTTIN signal or the process group is orphaned. EOVERFLOW The file is a regular file and an attempt was made to read at or beyond the offset maximum associated with the corresponding stream. The fgetwc() function may fail if: ENOMEM Insufficient storage space is available. ENXIO A request was made of a non-existent device, or the request was outside the capabilities of the device. EILSEQ The data obtained from the input stream does not form a valid character. USAGE
The ferror(3C) or feof(3C) functions must be used to distinguish between an error condition and an end-of-file condition. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ |ATTRIBUTE TYPE |ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |CSI |Enabled | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe with exceptions | +-----------------------------+-----------------------------+ SEE ALSO
feof(3C), ferror(3C), fgetc(3C), fgets(3C), fgetws(3C), fopen(3C), fread(3C), fscanf(3C), getc(3C), getchar(3C), gets(3C), scanf(3C), set- locale(3C), ungetc(3C), ungetwc(3C), attributes(5), standards(5) SunOS 5.11 15 Oct 2003 fgetwc(3C)
All times are GMT -4. The time now is 08:27 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy