Sale!

COMP 206 Mini Assignment #4 solved

Original price was: $35.00.Current price is: $35.00. $21.00

Category: You will receive a download link of the .ZIP file upon Payment

Description

5/5 - (1 vote)

Files and Pointers
A CSV file, Comma Separated Vector, is a file format normally used to implement log files or
simple database applications. It is a text file that uses the .csv file extension. Every row of the file
is a series of fields separated by commas and terminating with a carrage return. For example,
we have a phone book of friends: Bob is 19 his number is 514-123-4567, and Mary is 20 her
number is 450-345-7890. This would be stored in the CSV file as:
Bob, 19, 514-123-4567
Mary, 20, 450-345-7890
The comma and the carrage return are reserved words and cannot be used in the file to mean
anything else. In CSV2, escape characters are used to overcome this limitation, but for this
assignment we are not implmenting CSV2. It is optional to include a space after the comma.
A CSV record is one row of information. For example: Bob, 19, 514-123-4567 is a record. In this
case, it is populated by three fields, deliniated by the comma and carrage return: field #1 is Bob,
field #2 is 19, and field #3 is 514-123-4567. It is standard to refer to the contents of a CSV file
as records and fields.
Create a program that does the following:
1) Ask for a name
2) Ask for a replacement name
3) Search for the record in the CSV file that belongs to name 1
4) Load that record into an array of size 1000 characters
5) Using pointers and no library functions and no array indexes, properly replace the name
in the record with the replacement name
6) Then write this updated record back into the CSV file replacing the old record
7) Program terminates
In the above, steps 1 – 2 are in the main function.
Steps 3 – 4 are in a function called void FindRecord(char *filename, char *name, char record[]),
it is invoked from the main function. FindRecord opens the file and reads each record looking for
the matching record name. It then returns the matching record in the array record[] and closes
the file.
Step 5 is in a function called void Replace(char *name, char *newname, char record[]), it is
invoked from the main function. It replaces the name in the array record[] with newname. The
updated information is returned through the array record[]. You must use pointers.
Step 6 is in a function called void SaveRecord(char *filename, char *name, char record[]) and it
is invoked from the main function. SaveRecord replaces the record in CSV that matches name
Vybihal Assignment #4 Page 1 of 2
McGill University COMP 206 School of Computer Science
with the array record[]. It then closes the file. The entire CSV file must be preserved as in its
original form escept the one record that is replaced.
Do not use global variables.
Using vim, create a csv file called phonebook.csv and populate it with 5 records. Each record
will be formatted as: name, age, phone_number.
Your C program is called Replace.c.
WHAT TO HAND IN
Submit your .c file and your .csv file to myCourses.
HOW IT WILL BE GRADED
Points removed for bad practices:
• -1 for not following instructions
• -1 for not indenting, spacing, and/or commenting
• -1 for not using good variable names
This assignment is worth 20 points:
 +2 main()
 +4 FindRecord()
 +4 Replace()
 +4 SaveRecord()
 +3 Good use of pointers
 +3 Good file manipulation techniques
Vybihal Assignment #4 Page 2 of 2