Load catalogue from file, C/C++ Programming

Assignment Help:

Implement a menu driven real estate catalogue system that allows users to perform various catalogue maintenance and search tasks.  You are only allowed to use the C programming language.  You are not allowed to use C++.

Please use the "AssignTemplate.c" file found inside the Assignment Folder of LMS as the basis for your solution.  If you follow that template you will not go far wrong.

Please do not use global variables.  Up to 50% of marks will be lost for assignments that use global variables.

Please do functional decomposition.  Up to 50% of marks will be lost for students who try to write the entire program in one main function or something similar.  There should be at least 5 functions for the assignment.  One function for each task 2 to 4.  Two functions for task 5.  More functions than 5 is highly recommended.  The aim of this rule is to teach you how to pass pointer arguments into functions.

Task 1

The program should be menu driven.  The user should be presented with the following menu:

1. Load catalogue from file

2. Save catalogue to file

3. Display catalogue

4. Search property from catalogue

5. Quit

After selecting one of the above options the corresponding task should be performed.  After completing the selected task, the menu should be displayed again for the user to choose again unless the 5th option is chosen.

Task

Implement the load catalogue from file menu option.  After selecting this option the user should be asked to enter the name of a file to be loaded.  The file should then be loaded into an array of structures.  The array of structures should have been declared in the main function before the load catalogue function was called.  To get full marks for this task you should use run-time (dynamically) allocated memory for the array of structuresIf you use static memory allocation you will lose 5 marks.   You can assume the file will have the following format (note you can find an example input file inside the assignment folder called "example_input.txt", make sure your program at least works with that file).

[Number of properties]

[Address of property]

[Real estate agent firstname], [Real estate agent surname]

[Number of bedrooms]

[Price of property]

...

...

[Address of property]

[Real estate agent firstname], [Real estate agent surname]

[Number of bedrooms]

[Price of property]

The ... stands for intermediate catalogue entries. 

You can assume the property address string to be a maximum of 200 characters.

The firstname and surname strings have a maximum of 100 characters each.

Here is an explanation of the above fields:

 

[Number of properties]     -    This is the number of properties stored in the file

[Address of property] - A string specifying the address of the property, the string may contain spaces, punctuation, and numbers.  However the entire address is specified in one line.  Hint: you can use fgets to read in a whole line at a time.  Use stdin as the file pointer, since you are taking input from the keyboard.

[Real estate agent first name], [Real estate agent last surname] - Two strings which do not contain spaces but are separated by a comma followed by a space.

[Number of bedrooms]  - A number specifying the number of bedrooms in the property

[Price of property]  - Price of the property, it may contain a decimal point.

Below is an example of a catalogue file that contains 2 properties:

2

32 Bugden Ave, Forest Hill, VIC 3108

Peter, Kernighan

3

602000.82

292 Smith St, Blackburn, ACT 3920

 

2

222292.84

If the sample file is copied from windows XP into putty.  You my need to use the following command to change the format of the file from windows to unix:

dos2unix


Related Discussions:- Load catalogue from file

Explain union, Unions A union is also like a structure, except that onl...

Unions A union is also like a structure, except that only single variable in the union is stored in the allocated memory at a time. It is a collection of mutually exclusive var

Gross pay, Develop a C++ program that uses a while to determine the gross p...

Develop a C++ program that uses a while to determine the gross pay (in Dollars) for each of several employees. The company pays “straight-time” for the first 40 hours worked by eac

Explain hiding overloaded functions, Hiding overloaded functions We can...

Hiding overloaded functions We cannot overload a base class function by redefining it in a derived class with a dissimilar argument list. Consider examples to see if similar fu

Padovan string, padovan string for natural numbers program in java /...

padovan string for natural numbers program in java // aakash , suraj , prem sasi kumar kamaraj college program 1 : package test.padovanstring; public class Padov

Explain the bit wise operators, Explain the Bit Wise Operators? C langu...

Explain the Bit Wise Operators? C language has distinction of supporting special operators recognized as bit wise operators for manipulation of data at bit level. These operato

Beginning C++ Through Game Progammin, you are to create a text adventure ga...

you are to create a text adventure game that uses pointers. You have a rich, eccentric Uncle Billy who is soon to be deceased. How soon.....oops......he''s gone. He has left yo

Friends of classes, Define the following Window class : - integer  data mem...

Define the following Window class : - integer  data members, width and height - a constructor  that accepts two integer  parameters  (width followed by height) and uses them to ini

Call by reference, Call by reference: Arguments to a function can be pa...

Call by reference: Arguments to a function can be passed in two way; one by call by value and other by call by reference.  Call by value is passed either through a constant

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd