• Ask the user to input a filename

    • The specified file should be in the same directory as your executable program
    • Display the contents of the file by using a shell command (example: type )
  • Read data from the input text file

    • The file will contain information about multiple people
    • The format of each line in the the input file should be: FirstName, LastName, EmailAddress
    • Once all the data has been read, the input file should be closed and DELETED
  • Format and output the data

    • The stored data should be formatted as LastName, FirstName, EmailAddress
    • This data should be written to an output file of the SAME NAME as the input file
link|improve this question
2  
Homework? What have you tried so far? – Macmade Aug 17 '11 at 19:01
1  
When should I submit it? – Binyamin Sharet Aug 17 '11 at 19:01
1  
Do your own homework, otherwise you'll be asking questions forever because you never learned. If you've already started and have an attempted solution, I'm sure people would be glad to assist you with what's wrong if you'll provide the code. – Trey Schroeder Aug 17 '11 at 19:03
1  
The point of the previous comments is that Stack Overflow does not exist to do your work for you, but to help you become a better programmer. So, the thing we need to know is where are you stuck? Do you know how to write to the screen and how to get input from the user? Do you know how to open a file (and check for success in doing so)? Do you know what facilities are available for reading from a file, and how to convert the input to the expected data? – dmckee Aug 17 '11 at 19:06
Check this out for help on file i/o. But don't you dare ask a question like it. – James Aug 17 '11 at 19:14
feedback

closed as not a real question by Macmade, Binyamin Sharet, Antal S-Z, Andreas Brinck, Martin Beckett Aug 17 '11 at 19:14

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.