Chapter 12. Files (reference: Deitel s chap 11) chap8

Similar documents
Ch 11. C File Processing (review)

Chapter 11 File Processing

Lecture 8. Dr M Kasim A Jalil. Faculty of Mechanical Engineering UTM (source: Deitel Associates & Pearson)

Lecture6 File Processing

C File Processing: One-Page Summary

File Processing. Chih-Wei Tang ( 唐之瑋 ) Department of Communication Engineering National Central University JhongLi, Taiwan

C: How to Program. Week /June/18

ENG120. Misc. Topics

STRUCTURES & FILE IO

C How to Program, 6/e by Pearson Education, Inc. All Rights Reserved.

BBM#101# #Introduc/on#to# Programming#I# Fall$2014,$Lecture$13$

BBM#101# #Introduc/on#to# Programming#I# Fall$2013,$Lecture$13$

BBM 101 Introduc/on to Programming I Fall 2013, Lecture 13

Chapter 8 File Processing

Introduction to Computer Programming Lecture 18 Binary Files

Lecture 9: File Processing. Quazi Rahman

LAB 13 FILE PROCESSING

LAB 13 FILE PROCESSING

Fundamentals of Programming. Lecture 15: C File Processing

Standard File Pointers

Computer programming

Files and Streams Opening and Closing a File Reading/Writing Text Reading/Writing Raw Data Random Access Files. C File Processing CS 2060

UNIT IV-2. The I/O library functions can be classified into two broad categories:

Darshan Institute of Engineering & Technology for Diploma Studies Unit 6

System Software Experiment 1 Lecture 7

Mode Meaning r Opens the file for reading. If the file doesn't exist, fopen() returns NULL.

Accessing Files in C. Professor Hugh C. Lauer CS-2303, System Programming Concepts

Standard C Library Functions

Fundamentals of Programming Session 28

PROGRAMMAZIONE I A.A. 2017/2018

Unit 6 Files. putchar(ch); ch = getc (fp); //Reads single character from file and advances position to next character

CSci 4061 Introduction to Operating Systems. Input/Output: High-level

Input / Output Functions

Chapter 12. Text and Binary File Processing. Instructor: Öğr. Gör. Okan Vardarlı. Copyright 2004 Pearson Addison-Wesley. All rights reserved.

Intermediate Programming, Spring 2017*

CSI 402 Lecture 2 Working with Files (Text and Binary)

Files. Programs and data are stored on disk in structures called files Examples. a.out binary file lab1.c - text file term-paper.

File I/O. Arash Rafiey. November 7, 2017

CMPE-013/L. File I/O. File Processing. Gabriel Hugh Elkaim Winter File Processing. Files and Streams. Outline.

CS240: Programming in C

IS 0020 Program Design and Software Tools

Input/Output and the Operating Systems

Systems Programming. 08. Standard I/O Library. Alexander Holupirek

File IO and command line input CSE 2451

C-Refresher: Session 10 Disk IO

Introduction to file management

Program Design (II): Quiz2 May 18, 2009 Part1. True/False Questions (30pts) Part2. Multiple Choice Questions (40pts)

MARKS: Q1 /20 /15 /15 /15 / 5 /30 TOTAL: /100

C Basics And Concepts Input And Output

C PROGRAMMING. Characters and Strings File Processing Exercise

C Programming Language

UNIT-V CONSOLE I/O. This section examines in detail the console I/O functions.

C programming basics T3-1 -

Sistemas Operativos /2016 Support Document N o 1. Files, Pipes, FIFOs, I/O Redirection, and Unix Sockets

C mini reference. 5 Binary numbers 12

Quick review of previous lecture Ch6 Structure Ch7 I/O. EECS2031 Software Tools. C - Structures, Unions, Enums & Typedef (K&R Ch.

C for Engineers and Scientists: An Interpretive Approach. Chapter 14: File Processing

BIL 104E Introduction to Scientific and Engineering Computing. Lecture 12

fopen() fclose() fgetc() fputc() fread() fwrite()

25.2 Opening and Closing a File

Computer Programming Unit v

Introduction to Computer and Program Design. Lesson 6. File I/O. James C.C. Cheng Department of Computer Science National Chiao Tung University

Content. Input Output Devices File access Function of File I/O Redirection Command-line arguments

File (1A) Young Won Lim 11/25/16

CSI 402 Lecture 2 (More on Files) 2 1 / 20

The Design of C: A Rational Reconstruction (cont.)

IO = Input & Output 2

CSCI 171 Chapter Outlines

2009 S2 COMP File Operations

mywbut.com 12 File Input/Output

8. Characters, Strings and Files

Data File and File Handling

CS246 Spring14 Programming Paradigm Files, Pipes and Redirection

Programming & Data Structure

Fundamentals of Programming Session 27

File I/O. Preprocessor Macros

CSI 402 Systems Programming LECTURE 4 FILES AND FILE OPERATIONS

Basic I/O. COSC Software Tools. Streams. Standard I/O. Standard I/O. Formatted Output

Introduction to Programming in C Department of Computer Science and Engineering. Lecture No. #47. File Handling

CE Lecture 11

Naked C Lecture 6. File Operations and System Calls

Preprocessing directives are lines in your program that start with `#'. The `#' is followed by an identifier that is the directive name.

C Input/Output. Before we discuss I/O in C, let's review how C++ I/O works. int i; double x;

Goals of this Lecture

EM108 Software Development for Engineers

UNIX System Programming

Day14 A. Young W. Lim Tue. Young W. Lim Day14 A Tue 1 / 15

What Is Operating System? Operating Systems, System Calls, and Buffered I/O. Academic Computers in 1983 and Operating System

I/O Management! Goals of this Lecture!

The Design of C: A Rational Reconstruction (cont.)" Jennifer Rexford!

I/O Management! Goals of this Lecture!

EECS2031. Modifiers. Data Types. Lecture 2 Data types. signed (unsigned) int long int long long int int may be omitted sizeof()

DATA STRUCTURES USING C

DS: CS Computer Sc & Engg: IIT Kharagpur 1. File Access. Goutam Biswas. ect 29

C Programming 1. File Access. Goutam Biswas. Lect 29

Input/Output: Advanced Concepts

Organization of a file

Goals of C "" The Goals of C (cont.) "" Goals of this Lecture"" The Design of C: A Rational Reconstruction"

Programming Fundamentals

Advanced C Programming Topics

Transcription:

Chapter 12 Files (reference: Deitel s chap 11) 20061025 chap8

Introduction of File Data files Can be created, updated, and processed by C programs Are used for permanent storage of large amounts of data Storage of data in variables and arrays is only temporary 20061025 chap8 2

Input/Output Files: Review and Further Study Text file: a named collection of characters saved in secondary storage (e.g. on a disk). To mark the end of a text file: a special end-of-file character. <eof> Pressing the <return> or <enter> key causes the newline character to be placed in the file. ( \n ). This is a text file!<newline> It has two lines.<newline><eof> 20061213 cha12 3

Meanings of Common Escape Sequences Escape Sequence \n \t \f \r \b Meaning new line tab form feed (new page) return (go back to column 1 of current output line) backspace

Comparison of I/O with Standard Files and I/O with User-Defined File Pointers Line Functions That Access stdin and stdout Functions That Can Access Any Text File 1 scanf( %d, &num); fscanf(infilep, %d, &num); 2 printf( Number=%d\n,num); fprintf(outfilep, Number=%d\n,num);

The Data Hierarchy Data Hierarchy: Bit smallest data item Value of 0 or 1 Byte 8 bits Used to store a character Decimal digits, letters, and special symbols Field group of characters conveying meaning Example: your name Record group of related fields Represented by a struct or a class Example: In a payroll system, a record for a particular employee that contained his/her identification number, name, address, etc. 20061025 chap8 6

The Data Hierarchy Data Hierarchy (continued): File group of related records Example: payroll file Database group of related files 20061025 chap8 7

Files and Streams C views each file as a sequence of bytes File ends with the end-of-file marker Or, file ends at a specified byte 20061025 chap8 8

Files and Streams 20061025 chap8 9

Files and Streams Stream created when a file is opened Provide communication channel between files and programs Opening a file returns a pointer to a FILE structure Example file pointers: stdin - standard input (keyboard) stdout - standard output (screen) stderr - standard error (screen) 20061025 chap8 10

Files and Streams Read/Write functions in standard library fgetc Reads one character from a file Takes a FILE pointer as an argument fgetc( stdin ) equivalent to getchar() fputc Writes one character to a file Takes a FILE pointer and a character to write as an argument fputc( 'a', stdout ) equivalent to putchar( 'a' ) fgets Reads a line from a file fputs Writes a line to a file fscanf / fprintf File processing equivalents of scanf and printf 20061025 chap8 11

Creating a Sequential Access File C imposes no file structure No notion of records in a file Programmer must provide file structure Creating a File FILE *cfptr; Creates a FILE pointer called cfptr cfptr = fopen( clients.dat", w ); Function fopen returns a FILE pointer to file specified Takes two arguments file to open and file open mode If open fails, NULL returned 20061025 chap8 12

Creating a Sequential Access File fprintf Used to print to a file Like printf, except first argument is a FILE pointer (pointer to the file you want to print in) feof( FILE pointer ) Returns true if end-of-file indicator (no more data to process) is set for the specified file fclose( FILE pointer ) Closes specified file Performed automatically when program ends Good practice to close files explicitly Details Programs may process no files, one file, or many files Each file must have a unique name and should have its own pointer 20061025 chap8 13

Creating a Sequential Access File M o d e D e sc rip tio n r w a Open a file for reading. Create a file for writing. If the file already exists, discard the current contents. Append; open or create a file for writing at end of file. r+ Open a file for update (reading and writing). w+ Create a file for update. If the file already exists, discard the current contents. a+ Append; open or create a file for update; writing is done at the end of the file. 20061025 chap8 14

Creating a Sequential Access File (Ex1) 20061025 chap8 15

Creating a Sequential Access File (Ex1) 20061025 chap8 16

Program Output Enter the account, name, and balance. Enter EOF to end input.? 100 Jones 24.98? 200 Doe 345.67? 300 White 0.00? 400 Stone -42.16? 500 Rich 224.62? ^Z 20061025 chap8 17

Creating a Sequential Access File (Ex2) using fprintf 20061025 chap8 18

ONSATIR.TXT File Bu bir ornek satirdir. Satir no: 1 Bu bir ornek satirdir. Satir no: 2 Bu bir ornek satirdir. Satir no: 3 Bu bir ornek satirdir. Satir no: 4 Bu bir ornek satirdir. Satir no: 5 Bu bir ornek satirdir. Satir no: 6 Bu bir ornek satirdir. Satir no: 7 Bu bir ornek satirdir. Satir no: 8 Bu bir ornek satirdir. Satir no: 9 Bu bir ornek satirdir. Satir no: 10 20061025 chap8 19

Creating a Sequential Access File (Ex2) writing char by char using fputc 20061025 chap8 20

Reading Data from a Sequential Access File Reading a sequential access file Create a FILE pointer, link it to the file to read cfptr = fopen( clients.dat", "r" ); Use fscanf to read from the file Like scanf, except first argument is a FILE pointer fscanf( cfptr, "%d%s%f", &accounnt, name, &balance ); Data read from beginning to end rewind( cfptr ) Repositions file position pointer to beginning of file (byte 0) 20061025 chap8 21

Sequential-access File 22 Operating Systems, 2012, Danny Hendler & Roie Zivan

Notes on fscanf() Reading in a string: fscanf(cfptr, %s, string) Reads only a "word" at a time. Words are separated by a white-space: (space, tab, newline, or any combination of these) Moves to the next word in the stream automatically after each read. scanf( %s, string) behaves similarly, except input stream is stdin. scanf("%s",string) == fscanf(stdin,"%s",string) 23

Notes of fgets() Both read data from file, However: fgets() reads to a newline sign. fscanf() only reads up to whitespace. 24

1 /* Fig. 11.7: fig11_07.c 2 Reading and printing a sequential file */ 3 #include <stdio.h> 4 5 int main() 6 { 7 int account; /* account number */ 8 char name[ 30 ]; /* account name */ 9 double balance; /* account balance */ 10 11 FILE *cfptr; /* cfptr = clients.txt file pointer */ 12 13 /* fopen opens file; exits program if file cannot be opened */ 14 if ( ( cfptr = fopen( "clients.txt", "r" ) ) == NULL ) { 15 printf( "File could not be opened\n" ); 16 } /* end if */ 17 else { /* read account, name and balance from file */ 18 printf( "%-10s%-13s%s\n", "Account", "Name", "Balance" ); 19 fscanf( cfptr, "%d%s%lf", &account, name, &balance ); 20 21 /* while not end of file */ 22 while (!feof( cfptr ) ) { 23 printf( "%-10d%-13s%7.2f\n", account, name, balance ); 24 fscanf( cfptr, "%d%s%lf", &account, name, &balance ); 25 } /* end while */ 26 20061025 chap8

27 fclose( cfptr ); /* fclose closes the file */ 28 } /* end else */ 29 30 return 0; /* indicates successful termination */ 31 32 } /* end main */ Account Name Balance 100 Jones 24.98 200 Doe 345.67 300 White 0.00 400 Stone -42.16 500 Rich 224.62 20061025 chap8

Example: Reading all numbers from a file and then prints their average onto the screen 27

Reading Data from a Sequential Access File Sequential access file Cannot be modified without the risk of destroying other data Fields can vary in size Different representation in files and screen than internal representation 1, 34, -890 are all ints, but have different sizes on disk 300 White 0.00 400 Jones 32.87 (old data in file) If we want to change White's name to Worthington, 300 White 0.00 400 Jones 32.87 Data gets overwritten 28 300 Worthington 0.00ones 32.87

1 /* Fig. 11.8: fig11_08.c 2 Credit inquiry program */ 3 #include <stdio.h> 4 5 int main() 6 { 7 int request, account; 8 double balance; 9 char name[ 30 ]; 10 FILE *cfptr; 11 12 if ( ( cfptr = fopen( "clients.txt", "r" ) ) == NULL ) 13 printf( "File could not be opened\n" ); 14 else { 15 printf( "Enter request\n" 16 " 1 - List accounts with zero balances\n" 17 " 2 - List accounts with credit balances\n" 18 " 3 - List accounts with debit balances\n" 19 " 4 - End of run\n? " ); 20 scanf( "%d", &request ); 21 22 while ( request!= 4 ) { 23 fscanf( cfptr, "%d%s%lf", &account, name, 24 &balance ); 25 26 switch ( request ) { 27 case 1: 28 printf( "\naccounts with zero " 29 "balances:\n" ); 30 31 while (!feof( cfptr ) ) { 32 Outline 1. Initialize variables 2. Open file 2.1 Input choice 2.2 Scan files 3. Print 29 2000 Prentice Hall, Inc. All rights reserved.

33 if ( balance == 0 ) 34 printf( "%-10d%-13s%7.2f\n", 35 account, name, balance ); 36 37 fscanf( cfptr, "%d%s%lf", 38 &account, name, &balance ); 39 } 40 41 break; 42 case 2: 43 printf( "\naccounts with credit " 44 "balances:\n" ); 45 46 while (!feof( cfptr ) ) { 47 48 if ( balance < 0 ) 49 printf( "%-10d%-13s%7.2f\n", 50 account, name, balance ); 51 52 fscanf( cfptr, "%d%s%lf", 53 &account, name, &balance ); 54 } 55 56 break; 57 case 3: 58 printf( "\naccounts with debit " 59 "balances:\n" ); 60 61 while (!feof( cfptr ) ) { 62 63 if ( balance > 0 ) 64 printf( "%-10d%-13s%7.2f\n", Outline 2.2 Scan files 3. Print 30 2000 Prentice Hall, Inc. All rights reserved.

65 account, name, balance ); 66 67 fscanf( cfptr, "%d%s%lf", 68 &account, name, &balance ); 69 } 70 71 break; 72 } 73 74 rewind( cfptr ); 75 printf( "\n? " ); 76 scanf( "%d", &request ); 77 } 78 79 printf( "End of run.\n" ); 80 fclose( cfptr ); 81 } 82 83 return 0; 84 } Outline 3.1 Close file 31 2000 Prentice Hall, Inc. All rights reserved.

Enter request 1 - List accounts with zero balances 2 - List accounts with credit balances 3 - List accounts with debit balances 4 - End of run? 1 Accounts with zero balances: 300 White 0.00? 2 Accounts with credit balances: 400 Stone -42.16? 3 Accounts with debit balances: 100 Jones 24.98 200 Doe 345.67 500 Rich 224.62? 4 End of run. Outline Program Output 32 2000 Prentice Hall, Inc. All rights reserved.

Random access files Random-Access Files Access individual records without searching through other records Instant access to records in a file Implemented using fixed length records Sequential files do not have fixed length records 2000 Prentice Hall, Inc. All rights reserved.

C s view of a random-access file. 2000 Prentice Hall, Inc. All rights reserved.

Creating a Random-Access File Data in random access files Binary File: Unformatted (stored as "raw bytes") All data of the same type (ints, for example) uses the same amount of memory All records of the same type have a fixed length Data not human readable 2000 Prentice Hall, Inc. All rights reserved.

Binary File Files containing binary numbers that are the computer s internal representation of each file component A binary file created on one computer is rarely readable on another type of computers. A binary file can not be created or modified in a word processor. File operations: BINARY FILE fread fwrite SEQUENTIAL FILE fscanf fprintf 2000 Prentice Hall, Inc. All rights reserved.

Unformatted I/O functions for Creating Binary File Unformatted I/O functions fwrite Transfer bytes from a location in memory to a file fread Transfer bytes from a file to a location in memory Example: fwrite( &number, sizeof( int ), 1, myptr ); &number Location to transfer bytes from sizeof( int ) Number of bytes to transfer 1 For arrays, number of elements to transfer In this case, "one element" of an array is being transferred myptr File to transfer to or from 37 2000 Prentice Hall, Inc. All rights reserved.

38 Creating a Random-Access File (Binary File) binaryp = fopen( nums.bin, wb ); wb : write binary rb : read binary 2000 Prentice Hall, Inc. All rights reserved.

Creating a Random-Access File Writing structs fwrite( &myobject, sizeof (struct mystruct), 1, myptr ); sizeof returns size in bytes of object in parentheses To write several array elements Pointer to array as first argument Number of elements to write as third argument 39 2000 Prentice Hall, Inc. All rights reserved.

1 /* 2 Creating a random-access file sequentially */ 3 #include <stdio.h> 4 5 /* clientdata structure definition */ 6 struct clientdata { 7 int acctnum; /* account number */ 8 char lastname[ 15 ]; /* account last name */ 9 char firstname[ 10 ]; /* account first name */ 10 double balance; /* account balance */ 11 }; /* end structure clientdata */ 12 13 int main( void ) 14 { 15 int i; /* counter used to count from 1-100 */ 16 17 /* create clientdata with default information */ 18 struct clientdata blankclient = { 0, "", "", 0.0 }; 19 40 2000 Prentice Hall, Inc. All rights reserved.

20 FILE *cfptr; /* credit.dat file pointer */ 21 22 /* fopen opens the file; exits if file cannot be opened */ 23 if ( ( cfptr = fopen( "credit.dat", "wb" ) ) == NULL ) { 24 printf( "File could not be opened.\n" ); 25 } /* end if */ 26 else { 27 28 /* output 100 blank records to file */ 29 for ( i = 1; i <= 100; i++ ) { 30 fwrite( &blankclient, sizeof( struct clientdata ), 1, cfptr ); 31 } /* end for */ 32 33 fclose ( cfptr ); /* fclose closes the file */ 34 } /* end else */ 35 36 return 0; /* indicates successful termination */ 37 38 } /* end main */ fopen function opens a file; wb argument means the file is opened for writing in binary mode fwrite transfers bytes into a random-access file 41 2000 Prentice Hall, Inc. All rights reserved.

Writing Data Randomly to a Random-Access File fseek Sets file position pointer to a specific position fseek( pointer, offset, symbolic_constant ); pointer pointer to file offset file position pointer (0 is first location) symbolic_constant specifies where in file we are reading from SEEK_SET seek starts at beginning of file SEEK_CUR seek starts at current location in file SEEK_END seek starts at end of file file origin: offset SEEK_SET SEEK_CUR SEEK_END 2000 Prentice Hall, Inc. All rights reserved.

1 /* 2 Writing to a random access file */ 3 #include <stdio.h> 4 5 /* clientdata structure definition */ 6 struct clientdata { 7 int acctnum; /* account number */ 8 char lastname[ 15 ]; /* account last name */ 9 char firstname[ 10 ]; /* account first name */ 10 double balance; /* account balance */ 11 }; /* end structure clientdata */ 12 13 int main( void ) 14 { 15 FILE *cfptr; /* credit.dat file pointer */ 16 17 /* create clientdata with default information */ 18 struct clientdata client = { 0, "", "", 0.0 }; 19 20 /* fopen opens the file; exits if file cannot be opened */ 21 if ( ( cfptr = fopen( "credit.dat", "rb+" ) ) == NULL ) { 22 printf( "File could not be opened.\n" ); 23 } /* end if */ 24 else { 25 26 /* require user to specify account number */ 27 printf( "Enter account number" 28 " ( 1 to 100, 0 to end input )\n? " ); 29 scanf( "%d", &client.acctnum ); 30 43 2000 Prentice Hall, Inc. All rights reserved.

31 /* user enters information, which is copied into file */ 32 while ( client.acctnum!= 0 ) { 33 34 /* user enters last name, first name and balance */ 35 printf( "Enter lastname, firstname, balance\n? " ); 36 37 /* set record lastname, firstname and balance value */ 38 scanf("%s%s%lf", client.lastname, 39 client.firstname, &client.balance ); 40 41 /* seek position in file to user-specified record */ 42 fseek( cfptr, ( client.acctnum - 1 ) * 43 sizeof( struct clientdata ), SEEK_SET ); 44 45 /* write user-specified information in file */ 46 fwrite( &client, sizeof( struct clientdata ), 1, cfptr ); 47 48 /* enable user to input another account number */ 49 printf( "Enter account number\n? " ); 50 scanf( "%d", &client.acctnum ); 51 } /* end while */ 52 53 fclose( cfptr ); /* fclose closes the file */ 54 } /* end else */ 55 56 return 0; /* indicates successful termination */ 57 58 } /* end main */ fseek searches for a specific location in the random-access file 44 2000 Prentice Hall, Inc. All rights reserved.

Enter account number ( 1 to 100, 0 to end input )? 37 Enter lastname, firstname, balance? Barker Doug 0.00 Enter account number? 29 Enter lastname, firstname, balance? Brown Nancy -24.54 Enter account number? 96 Enter lastname, firstname, balance? Stone Sam 34.98 Enter account number? 88 Enter lastname, firstname, balance? Smith Dave 258.34 Enter account number? 33 Enter lastname, firstname, balance? Dunn Stacey 314.33 Enter account number? 0 Output 45 2000 Prentice Hall, Inc. All rights reserved.

Reading Data from a Random- Access File fread Reads a specified number of bytes from a file into memory fread( &client, sizeof (struct clientdata), 1, myptr ); Can read several fixed-size array elements Provide pointer to array Indicate number of elements to read To read multiple elements, specify in third argument 46 2000 Prentice Hall, Inc. All rights reserved.

1 /* 2 Reading a random access file sequentially */ 3 #include <stdio.h> 4 5 /* clientdata structure definition */ 6 struct clientdata { 7 int acctnum; /* account number */ 8 char lastname[ 15 ]; /* account last name */ 9 char firstname[ 10 ]; /* account first name */ 10 double balance; /* account balance */ 11 }; /* end structure clientdata */ 12 13 int main( void ) 14 { 15 FILE *cfptr; /* credit.dat file pointer */ 16 17 /* create clientdata with default information */ 18 struct clientdata client = { 0, "", "", 0.0 }; 19 20 /* fopen opens the file; exits if file cannot be opened */ 21 if ( ( cfptr = fopen( "credit.dat", "rb" ) ) == NULL ) { 22 printf( "File could not be opened.\n" ); 23 } /* end if */ 47 2000 Prentice Hall, Inc. All rights reserved.

24 else { 25 printf( "%-6s%-16s%-11s%10s\n", "Acct", "Last Name", 26 "First Name", "Balance" ); 27 28 /* read all records from file (until eof) */ 29 while (!feof( cfptr ) ) { 30 fread( &client, sizeof( struct clientdata ), 1, cfptr ); 31 32 /* display record */ 33 if ( client.acctnum!= 0 ) { 34 printf( "%-6d%-16s%-11s%10.2f\n", 35 client.acctnum, client.lastname, 36 client.firstname, client.balance ); 37 } /* end if */ 38 39 } /* end while */ 40 41 fclose( cfptr ); /* fclose closes the file */ 42 } /* end else */ 43 44 return 0; /* indicates successful termination */ 45 46 } /* end main */ Acct Last Name First Name Balance 29 Brown Nancy -24.54 33 Dunn Stacey 314.33 37 Barker Doug 0.00 88 Smith Dave 258.34 96 Stone Sam 34.98 fread reads bytes from a randomaccess file to a location in memory 48 2000 Prentice Hall, Inc. All rights reserved.