Weekly Programming Exercise #1 Not graded. Due Monday, 09/21, before class. /*************************************************** * For text editor, use 'vim' instead of 'vi'. * vim is "vi improved". * It allows you to use the backspace key * and the arrow keys within the edit mode. ***************************************************/ 1) Write a program that prints the following two lines: Line 1: your name Line 2: your UNI Can you use only one printf statement? 2) What is the output of the following printf statements? ('\t' is tab.) a) printf("I love coffee"); printf("I love tea"); b) printf("Help!\n9-1-1, what is your emergency?"); c) printf("\tSo long\tfarewell\nit's time to say goodbye"); To check your answer, try these out on CUNIX. 3) Type in the following code and check the result. #include int main() { int x; x = 5/2; // do you remember the result? (hint:red alarms going off your head) printf("The value of x is %d\n", x); return 0; } Try other operators that we've learned in class. Try them with different numbers.