CS60 Homework Assignment 1 -------------------------- Due: Wed, Oct 1st The goal of this assignment is to illustrate that you have access to the CSIL Linux machines and feel comfortable enough with the following procedure: - log in to lab machine - open a shell (xterm) - create a project directory for this assignment - create a C program file using a text editor of your choosing - save the program into your project directory - start up a typescript using the 'script' command - compile and run the C program using 'gcc' - exit the script and submit the homework with the 'turnin' system Your homework directory should contain the following files before you turn it in: - your C program (somthing like 'homework1.c') - a typescript showing how you compiled and executed the program (something like homework1.script) To turn in your homework, go up the directory tree to the directory just above your homework project directory, and submit the project directory with the above files in it. The turnin tag for this assignment is 'hw1' so a command like the following will turn in the assignment. turnin hw1@cs60 Where you substitute your actual project directory name for . The program to use for this assignment should have the following form with the exception of the actual string being printed, which you should change to "Hello, " where instead of you will put your actual name, followed by a newline character. BEGIN CODE ------------------------------ #include main() { printf("Hello, World\n"); }