CSCI 265--Programming Assignment (Pex) 1 DUE: TBA PROBLEM SUMMARY This assignment is concerned with changing the KWIC output format. PROBLEM SPECIFICATION Consider the following KWIC input and output: Input: ====== "The C Programming Language" "The Cat in the Hat" Old output format: ================== C Programming Language, The Cat in the Hat, The Hat, The Cat in the Language, The C Programming Programming Language, The C New output format: ================== The C Programming Language The Cat in the Hat The Cat in the Hat The C Programming Language The C Programming Language Notice that the word that appeared in the first column of each line in the old format now appears starting in column 40 (one relative counting) of the new format. The new output format is specified in Output.h. Your task is to modify Output.c such that it behaves as specified in Output.h. PROBLEM SPECIFICATION 1. Copy the directory tree ~csci265/Pex/Pex1/kwic_pex1 You may assume that 1. You have 80 columns available to you on the output screen 1. No input line will exceed 40 characters GRADING CRITERIA Your mark will be based on the following criteria: 1. Have you made the required changes? 2. Have you made any unnecessary changes? 3. Are your changes consistent with the programming style in the original version? You may also lose points if you do not properly follow the submission instructions given below. SUBMISSION You must insert a comment at the beginning of the Output.c file which contains the name of your team and the login ids for the members of your team. For example: /* Team: Omega, Members: tsmith01, jjones, zzwicky */ Then e-mail your implementation of Output.c to csci265. Your e-mail message should contain your version of Output.c and NOTHING ELSE. The subject line on the mail message should be the word `CSCI265-Exercise-1'. Submit only one implementation; if you send more than one, we will discard all but the last one received.