SlideShare a Scribd company logo
In this session, you will learn to: Work with structures Use structures in file handling Objectives
Structures: Are collection of heterogeneous data types. Are also known as records. Are used to define new data types. Are defined using the  struct  keyword. Working with Structures
A structure is defined by using the  struct  keyword. Consider the following example:  struct { char transno [4]; int salesno; int prodno; int unit_sold; float value_of_sale; }  salesrec; All the variables in the record are treated as one data structure –  salesrec . Defining Structures
State whether True or False: The members of a structure must be of the same data type. a. Give the declaration for a structure called  date  with the   following members. day (2 digits) month (2 digits) year (4 digits) b. Give appropriate statements to accept values into the   members of the structure  date  and then print out the   date as mm/dd/yyyy. Practice: 7.1
Solution: False a. The structure declaration should be: struct { int day; int month;   int year;   } date; b. The statements could be: scanf(“%d%d%d”, &date, &date.month, &date.year); printf(“%d/%d/5d”, date.month, date.day,  date.year); Practice: 7.1 (Contd.)
Defining a label structures: Structure label may be declared as: struct salesdata { char transno [4]; int salesno; int prodno; int unit_sold; float value_of-sale; }; struct salesdata salesrec; Here,  salesdata  is the label and  salesrec  is the data item. Defining Structures (Contd.)
Given the following declarations: struct date_type{ struct { int day; int day; int month; int month; int year; int year;     };  } date; Declaration 1 Declaration 2   Answer the following questions: Memory is allocated for the structure ( date_type/ date ). Which of the following is/are the correct way(s) of referring to the variable day? a. day.date b. date_type.day Practice: 7.2
What change(s) should be made to the first declaration so that the structure date is created of type  date_type ? Is the following statement valid in case of the second declaration? If not, why? struct date another_date; Practice: 7.2 (Contd.)
Solution: date (date_type is only a structure type) a. Invalid because the structure name precedes the variable   name.  b. Invalid because date_type is not actually created in   memory, it is only a label. 3. The following statement should be added after the  struct   declaration: struct date_type date; 4. This is invalid because date is not a structure type but an actual structure in memory. Practice: 7.2 (Contd.)
Passing Structures to Functions: Structures may be passed to functions either by value or by reference. Usually methods pass the address of the structure. The name of the variable being referenced is preceded by the symbol   . Passing Structures to Functions
Consider the following code: struct date_type  { int day; int month;  int year; }; struct date_type date,  *ptr; How can the pointer variable  ptr  be assigned the address of the structure  date ? Is the following statement valid? ptr = &date_type; c.  Give alternative ways of referring to: i.  &date.day ii.  date.month Given that  ptr  has been assigned the address of the structure date. Practice: 7.3
2. Consider the incomplete code of a program that is given in the following file. The code uses a function called  printmonth()  that displays the month name corresponding to any month number. The month number is accepted into the member month of the structure  date . The blanks have to be filled in appropriately. Practice: 7.3 (Contd.)
Solution: a. By using the following statement:   ptr = &date ; b. No. because  date_type  is not created in memory; it is   only a label. c. i.  &(ptr-> date)   ii.  ptr-> month 2. The statement to invoke  printmonth()  could be: printmonth(&date); /*invoke printmonth() by passing structure */ The missing lines in the code for  printmonth()  are: printmonth(point) struct date_type *point; point  is the parameter of the function since it is used within the function to access members of the structure  date . Practice: 7.3 (Contd.)
Arrays of structures can also be created. It works in the same way as any other data type array. Consider the following example: struct prod data{ char prodname[8];  int no_of_sales; float tot_sale; }; An array for the preceding structure can be declared as: struct proddata prod_field[4]; The elements of the structure can be accessed as: prod_field [0].prodnam[0];  Arrays of Structures
Declare a structure which will contain the following data for 3 employees: Employee code (3 characters) First name (20 characters) Middle initial  (1 character) Last name (20 characters) The employee codes to be stored in this structure are  E01 ,  E02 , and  E03 . 2. Write the code to input for all 3 employees, and print out the initials of each (e.g. Ashraf A Kumar would be printed as AAK) along with their codes. Practice: 7.4
Solution: Practice: 7.4 (Contd.)
A structure can be used as a valid data type within another structure. For example, if date has been defined as: struct date{ int dd; int mm; int yy; }; The  date  structure can be used in another structure as: struct trans_rec{   char transno[4];     char type;   float amount;   struct date tran_date;   }; Working with Structures (Contd.)
What will the following declaration do? typedef char sentence[50]; sentence complex[10]; Practice: 7.5
Solution:  1. The first statement defines sentence as a data type consisting of an array of 50 characters. The second statement declares complex as a two-dimensional array, (an array of ten arrays of 50 characters each). Practice: 7.5 (Contd.)
To store data permanently, it needs to be stored in a file. Mostly, the data, to be written in the file, is a logical group of information i.e. records. These records can be stored in structure variables. Hence, you need to write structures onto a file. Using Structures in File Handling
The  fwrite()  function is used to write structures onto a file.   The  f write()  function has the following syntax: fwrite (constant pointer, sizeof (datatype), 1, FILE pointer);   The first parameter is a pointer to the data to be written. The second parameter is the size of data to be written. The third parameter is the number of objects or data to be written. The fourth parameter is the pointer to file. Writing Records onto a File Using Structures
Now that various assets of the transaction data entry program have been explained, these have to be consolidated and the entire program coded. The problem statement is repeated below. A transaction data entry program called  dataent , used at the familiar Alcatel Automatics Company, has to be coded. The transaction file stores the data on transactions made by the salesmen of the company. The records consist of the following fields. Transaction number Salesman number Product number (numbered 1 to 4) Units sold Value of sale Value of sale is calculated in the program. Practice: 7.6
The program should allow the user to indicate when he wants to stop data entry (i.e. it should keep accepting records until the user indicates that there are no more records). After all records have been entered, a report on the total number of sales and the total sale value for each product is to be printed in the following format (for each product).   Product number : ___________________   Product name : ___________________   Total number of sales : ___________________   Total sale value : ___________________ Use the structures  salesrec ,  salesdata ,  prodata , and  prod_field  defined earlier and code for the report printing within  main() . Also use the code provided on page 7.2 and 7.3 in your solution. Practice: 7.6 (Contd.)
Solution:  Practice: 7.6 (Contd.)
The  fread()  function is used to read data from a stream. The  fread()  function has the following syntax:   fread (ptr, sizeof, 1, fp); The first parameter is a pointer to the variable where the data is to be fetched. The second parameter is the size of data to be read. The third parameter is the number of objects or data to be read. The fourth parameter is the pointer to file. Reading Records from Files Using Structures
Is the following statement to read the first 5 records of the file  trans.dat  valid? fread (ptr, (sizeof(salesrec) *5), 1, fp); If not state why and give the correct statement. No checks are to be done for an unsuccessful read. 2. Modify the above  fread()  statement to include an end-of-file check and also check whether the records have been read successfully. In case of end-of-file, display the message: End-of-file encountered and in case of other errors, display the message and exit: Unsuccessful read In case of a successful read, display the salesman number and transaction number of each record. Give all the structure declarations required. Practice: 7.7
Solution: Practice: 7.7 (Contd.)
Debug the following program called  dat.c  using the error listing provided in the following file. Practice: 7.8
Solution: The solution to this practice will be discussed in class. Work out your answer. Practice: 7.8 (Contd.)
In this session, you learned that: Records can be defined in C by using structures. Structure members can be of the same/different data type. Memory is not reserved when a structure label is declared. A structure is created when it is declared as a  struct  of the same type as the structure label. A member of a structure can be accessed as follows: structure-name.member-name A pointer to a structure can be used to pass a structure to a function. Using pointers, the structure members are accessed as follows: pointer-name->member-name Arrays of structures can be defined and initialized (if global or static). To access any member, an index has to be used after the structure name, as follows: structure-name [index ].member-name Summary
The  typedef  statement can assign names to user-defined data types. These are treated the same way as data types provided by C. The  fread()  function can read records from a file into a structure/array of structures. The format of the function is: fread (pointer, size of structure, number of objects to be read, file pointer); The  fread()  function returns the number of objects read from the file. It does not return any special value in case of  end-of-file. The  feof()  function is used in conjunction with  fread()  to check for end-of-file. The  fwrite()  function can write a structure array of structures onto a file. All numeric data is written in compressed form. Usually,  fread()  and  fwrite()  are used in conjunction. Summary (Contd.)

More Related Content

PPS
C programming session 05
PPS
C programming session 02
PPS
C programming session 01
PPS
C programming session 11
PPS
C programming session 08
PPS
C programming session 07
PPS
C programming session 04
PPT
02a fundamental c++ types, arithmetic
C programming session 05
C programming session 02
C programming session 01
C programming session 11
C programming session 08
C programming session 07
C programming session 04
02a fundamental c++ types, arithmetic

What's hot (20)

PDF
Strings-Computer programming
PPTX
Computer programming(CP)
PDF
Functions-Computer programming
PDF
Functions, Strings ,Storage classes in C
PDF
C programming & data structure [arrays & pointers]
PDF
Pointers-Computer programming
PPTX
Programming construction tools
PDF
Tutorial on c language programming
PDF
C programming & data structure [character strings & string functions]
PPTX
Structure of c_program_to_input_output
PDF
Structures-2
PPT
Getting started with c++
PDF
Computer
PPT
Declaration of variables
PPTX
Cpu-fundamental of C
PDF
C faqs interview questions placement paper 2013
PDF
Introduction to c++
PDF
C interview-questions-techpreparation
PDF
C programming | Class 8 | III Term
PDF
USER DEFINED FUNCTIONS IN C MRS.SOWMYA JYOTHI.pdf
Strings-Computer programming
Computer programming(CP)
Functions-Computer programming
Functions, Strings ,Storage classes in C
C programming & data structure [arrays & pointers]
Pointers-Computer programming
Programming construction tools
Tutorial on c language programming
C programming & data structure [character strings & string functions]
Structure of c_program_to_input_output
Structures-2
Getting started with c++
Computer
Declaration of variables
Cpu-fundamental of C
C faqs interview questions placement paper 2013
Introduction to c++
C interview-questions-techpreparation
C programming | Class 8 | III Term
USER DEFINED FUNCTIONS IN C MRS.SOWMYA JYOTHI.pdf
Ad

Viewers also liked (9)

PPTX
Session no 4
PPTX
Java script session 3
PPT
Session No1
PPTX
Session no 2
PPS
C programming session 03
PPTX
Java script Session No 1
PPTX
An Overview of HTML, CSS & Java Script
PPTX
Session 3 Java Script
PPSX
C language (Collected By Dushmanta)
Session no 4
Java script session 3
Session No1
Session no 2
C programming session 03
Java script Session No 1
An Overview of HTML, CSS & Java Script
Session 3 Java Script
C language (Collected By Dushmanta)
Ad

Similar to C programming session 09 (20)

PPS
C programming session 13
PDF
Unit 4 qba
PDF
Notes how to work with variables, constants and do calculations
PDF
Structures
PPS
C programming session 13
PDF
C Programming - Refresher - Part IV
PDF
Structures in c++
PDF
Structures in c++
DOCX
C++ Programming Class Creation Program Assignment Instructions
PPTX
Chapter 8 Structure Part 2 (1).pptx
PDF
Data structure and Alogorithm analysis unit one
PDF
ADBMS ASSIGNMENT
PPTX
Lecture 3.mte 407
DOCX
1 Goals. 1. To use a text file for output and later for in.docx
PPTX
Ch-3(b) - Variables and Data types in C++.pptx
PPTX
Lesson 26 c programming ( union, storage classes)
PPTX
Technical Interview
DOCX
Fahri tugas cloud1
PPTX
Typescript language extension of java script
PPT
C programming session 13
Unit 4 qba
Notes how to work with variables, constants and do calculations
Structures
C programming session 13
C Programming - Refresher - Part IV
Structures in c++
Structures in c++
C++ Programming Class Creation Program Assignment Instructions
Chapter 8 Structure Part 2 (1).pptx
Data structure and Alogorithm analysis unit one
ADBMS ASSIGNMENT
Lecture 3.mte 407
1 Goals. 1. To use a text file for output and later for in.docx
Ch-3(b) - Variables and Data types in C++.pptx
Lesson 26 c programming ( union, storage classes)
Technical Interview
Fahri tugas cloud1
Typescript language extension of java script

More from Dushmanta Nath (6)

DOC
Global Warming Project
DOC
DBMS Practical File
DOC
Manufacturing Practice (MP) Training Project
DOC
BSNL Training Project
DOC
IT- 328 Web Administration (Practicals)
DOC
IT-314 MIS (Practicals)
Global Warming Project
DBMS Practical File
Manufacturing Practice (MP) Training Project
BSNL Training Project
IT- 328 Web Administration (Practicals)
IT-314 MIS (Practicals)

Recently uploaded (20)

PDF
Anesthesia in Laparoscopic Surgery in India
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
RMMM.pdf make it easy to upload and study
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
Complications of Minimal Access Surgery at WLH
PPTX
Cell Types and Its function , kingdom of life
PPTX
Institutional Correction lecture only . . .
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
Pre independence Education in Inndia.pdf
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PPTX
GDM (1) (1).pptx small presentation for students
PDF
Basic Mud Logging Guide for educational purpose
PDF
Insiders guide to clinical Medicine.pdf
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PPTX
master seminar digital applications in india
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
Anesthesia in Laparoscopic Surgery in India
Supply Chain Operations Speaking Notes -ICLT Program
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
RMMM.pdf make it easy to upload and study
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Complications of Minimal Access Surgery at WLH
Cell Types and Its function , kingdom of life
Institutional Correction lecture only . . .
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Pre independence Education in Inndia.pdf
Pharmacology of Heart Failure /Pharmacotherapy of CHF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
GDM (1) (1).pptx small presentation for students
Basic Mud Logging Guide for educational purpose
Insiders guide to clinical Medicine.pdf
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
master seminar digital applications in india
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx

C programming session 09

  • 1. In this session, you will learn to: Work with structures Use structures in file handling Objectives
  • 2. Structures: Are collection of heterogeneous data types. Are also known as records. Are used to define new data types. Are defined using the struct keyword. Working with Structures
  • 3. A structure is defined by using the struct keyword. Consider the following example: struct { char transno [4]; int salesno; int prodno; int unit_sold; float value_of_sale; } salesrec; All the variables in the record are treated as one data structure – salesrec . Defining Structures
  • 4. State whether True or False: The members of a structure must be of the same data type. a. Give the declaration for a structure called date with the following members. day (2 digits) month (2 digits) year (4 digits) b. Give appropriate statements to accept values into the members of the structure date and then print out the date as mm/dd/yyyy. Practice: 7.1
  • 5. Solution: False a. The structure declaration should be: struct { int day; int month; int year; } date; b. The statements could be: scanf(“%d%d%d”, &date, &date.month, &date.year); printf(“%d/%d/5d”, date.month, date.day, date.year); Practice: 7.1 (Contd.)
  • 6. Defining a label structures: Structure label may be declared as: struct salesdata { char transno [4]; int salesno; int prodno; int unit_sold; float value_of-sale; }; struct salesdata salesrec; Here, salesdata is the label and salesrec is the data item. Defining Structures (Contd.)
  • 7. Given the following declarations: struct date_type{ struct { int day; int day; int month; int month; int year; int year; }; } date; Declaration 1 Declaration 2 Answer the following questions: Memory is allocated for the structure ( date_type/ date ). Which of the following is/are the correct way(s) of referring to the variable day? a. day.date b. date_type.day Practice: 7.2
  • 8. What change(s) should be made to the first declaration so that the structure date is created of type date_type ? Is the following statement valid in case of the second declaration? If not, why? struct date another_date; Practice: 7.2 (Contd.)
  • 9. Solution: date (date_type is only a structure type) a. Invalid because the structure name precedes the variable name. b. Invalid because date_type is not actually created in memory, it is only a label. 3. The following statement should be added after the struct declaration: struct date_type date; 4. This is invalid because date is not a structure type but an actual structure in memory. Practice: 7.2 (Contd.)
  • 10. Passing Structures to Functions: Structures may be passed to functions either by value or by reference. Usually methods pass the address of the structure. The name of the variable being referenced is preceded by the symbol  . Passing Structures to Functions
  • 11. Consider the following code: struct date_type { int day; int month; int year; }; struct date_type date, *ptr; How can the pointer variable ptr be assigned the address of the structure date ? Is the following statement valid? ptr = &date_type; c. Give alternative ways of referring to: i. &date.day ii. date.month Given that ptr has been assigned the address of the structure date. Practice: 7.3
  • 12. 2. Consider the incomplete code of a program that is given in the following file. The code uses a function called printmonth() that displays the month name corresponding to any month number. The month number is accepted into the member month of the structure date . The blanks have to be filled in appropriately. Practice: 7.3 (Contd.)
  • 13. Solution: a. By using the following statement: ptr = &date ; b. No. because date_type is not created in memory; it is only a label. c. i. &(ptr-> date) ii. ptr-> month 2. The statement to invoke printmonth() could be: printmonth(&date); /*invoke printmonth() by passing structure */ The missing lines in the code for printmonth() are: printmonth(point) struct date_type *point; point is the parameter of the function since it is used within the function to access members of the structure date . Practice: 7.3 (Contd.)
  • 14. Arrays of structures can also be created. It works in the same way as any other data type array. Consider the following example: struct prod data{ char prodname[8]; int no_of_sales; float tot_sale; }; An array for the preceding structure can be declared as: struct proddata prod_field[4]; The elements of the structure can be accessed as: prod_field [0].prodnam[0]; Arrays of Structures
  • 15. Declare a structure which will contain the following data for 3 employees: Employee code (3 characters) First name (20 characters) Middle initial (1 character) Last name (20 characters) The employee codes to be stored in this structure are E01 , E02 , and E03 . 2. Write the code to input for all 3 employees, and print out the initials of each (e.g. Ashraf A Kumar would be printed as AAK) along with their codes. Practice: 7.4
  • 17. A structure can be used as a valid data type within another structure. For example, if date has been defined as: struct date{ int dd; int mm; int yy; }; The date structure can be used in another structure as: struct trans_rec{ char transno[4]; char type; float amount; struct date tran_date; }; Working with Structures (Contd.)
  • 18. What will the following declaration do? typedef char sentence[50]; sentence complex[10]; Practice: 7.5
  • 19. Solution: 1. The first statement defines sentence as a data type consisting of an array of 50 characters. The second statement declares complex as a two-dimensional array, (an array of ten arrays of 50 characters each). Practice: 7.5 (Contd.)
  • 20. To store data permanently, it needs to be stored in a file. Mostly, the data, to be written in the file, is a logical group of information i.e. records. These records can be stored in structure variables. Hence, you need to write structures onto a file. Using Structures in File Handling
  • 21. The fwrite() function is used to write structures onto a file. The f write() function has the following syntax: fwrite (constant pointer, sizeof (datatype), 1, FILE pointer); The first parameter is a pointer to the data to be written. The second parameter is the size of data to be written. The third parameter is the number of objects or data to be written. The fourth parameter is the pointer to file. Writing Records onto a File Using Structures
  • 22. Now that various assets of the transaction data entry program have been explained, these have to be consolidated and the entire program coded. The problem statement is repeated below. A transaction data entry program called dataent , used at the familiar Alcatel Automatics Company, has to be coded. The transaction file stores the data on transactions made by the salesmen of the company. The records consist of the following fields. Transaction number Salesman number Product number (numbered 1 to 4) Units sold Value of sale Value of sale is calculated in the program. Practice: 7.6
  • 23. The program should allow the user to indicate when he wants to stop data entry (i.e. it should keep accepting records until the user indicates that there are no more records). After all records have been entered, a report on the total number of sales and the total sale value for each product is to be printed in the following format (for each product). Product number : ___________________ Product name : ___________________ Total number of sales : ___________________ Total sale value : ___________________ Use the structures salesrec , salesdata , prodata , and prod_field defined earlier and code for the report printing within main() . Also use the code provided on page 7.2 and 7.3 in your solution. Practice: 7.6 (Contd.)
  • 24. Solution: Practice: 7.6 (Contd.)
  • 25. The fread() function is used to read data from a stream. The fread() function has the following syntax: fread (ptr, sizeof, 1, fp); The first parameter is a pointer to the variable where the data is to be fetched. The second parameter is the size of data to be read. The third parameter is the number of objects or data to be read. The fourth parameter is the pointer to file. Reading Records from Files Using Structures
  • 26. Is the following statement to read the first 5 records of the file trans.dat valid? fread (ptr, (sizeof(salesrec) *5), 1, fp); If not state why and give the correct statement. No checks are to be done for an unsuccessful read. 2. Modify the above fread() statement to include an end-of-file check and also check whether the records have been read successfully. In case of end-of-file, display the message: End-of-file encountered and in case of other errors, display the message and exit: Unsuccessful read In case of a successful read, display the salesman number and transaction number of each record. Give all the structure declarations required. Practice: 7.7
  • 28. Debug the following program called dat.c using the error listing provided in the following file. Practice: 7.8
  • 29. Solution: The solution to this practice will be discussed in class. Work out your answer. Practice: 7.8 (Contd.)
  • 30. In this session, you learned that: Records can be defined in C by using structures. Structure members can be of the same/different data type. Memory is not reserved when a structure label is declared. A structure is created when it is declared as a struct of the same type as the structure label. A member of a structure can be accessed as follows: structure-name.member-name A pointer to a structure can be used to pass a structure to a function. Using pointers, the structure members are accessed as follows: pointer-name->member-name Arrays of structures can be defined and initialized (if global or static). To access any member, an index has to be used after the structure name, as follows: structure-name [index ].member-name Summary
  • 31. The typedef statement can assign names to user-defined data types. These are treated the same way as data types provided by C. The fread() function can read records from a file into a structure/array of structures. The format of the function is: fread (pointer, size of structure, number of objects to be read, file pointer); The fread() function returns the number of objects read from the file. It does not return any special value in case of end-of-file. The feof() function is used in conjunction with fread() to check for end-of-file. The fwrite() function can write a structure array of structures onto a file. All numeric data is written in compressed form. Usually, fread() and fwrite() are used in conjunction. Summary (Contd.)

Editor's Notes

  • #2: Begin the session by explaining the objectives of the session.
  • #3: Discuss the need for structures. Compare structure with an array.
  • #5: Use this slide to test the student’s understanding on defining structures.
  • #7: Discuss the advantages of using a label in defining a structure. Tell the students that a structure variable can be directly assigned to another structure variable of the same type. You need not to copy elements individually.
  • #8: Use this slide to test the student’s understanding on defining structures.
  • #11: Tell the students that structures can be passed to other functions. The structures can be passed either by value or by reference.
  • #12: Use this slide to test the student’s understanding on passing structures to functions.
  • #16: Use this slide to test the student’s understanding on array of structures.
  • #18: Tell the students the way to access the elements of a structure, which is contained in another structure. Also, discuss the use of the typedef statement.
  • #19: Use this slide to test the student’s understanding on typedef statement.
  • #23: Use this slide to test the student’s understanding on the fwrite() function.
  • #26: Tell the students that they can use the feof() function to check for the end of file. The feof () function does not report end-of-file unless we try to read past the last character of the file. Consider the following code. while (!feof (fp)) { fread (&buf, sizeof (struct buf) , 1 , fp) ; printf (…) ; /* print data from structure */ } Once the last record is read , the feof () function does not return a non-zero value. It senses the end-of-file only after the next read which fails. The buffer buf would still contain the contents of the last record which will be printed again. An alternative would be: while (1) { fread (&buf , sizeof (struct buf) , 1 , fp) ; if (! feof ()) printf (…) ; /* print data from structure */ }
  • #27: Use this slide to test the student’s understanding on the fwrite() and fread() function.
  • #29: Use this slide to test the student’s understanding on reading and writing structures in a file.
  • #31: Use this and the next slide to summarize the session.