You have 30 minutes for this quiz. You may use any files in our cs account, or class files in ~jkinne/public_html/cs151-2013/code You MAY NOT use a calculator, phone, etc. You MAY NOT use written notes. Regular class will resume after the quiz. Total points: 20 HW points, counts as hw9. ------------------------------------------------ Complete as many of the following as possible. 1) In your handin/hw9/ directory, use emacs to create a file called number.c. The program should ask the user to enter an integer. If the number entered is > 0, the program says "Positive". Otherwise the program says "Not positive". 1b) Modify your number.c so if it is non-negative it compares the number against 255 and 65535. three digits as well. Here is what you should print, depending on the number: negative: "Not positive" 0 to 255: "fits in one byte" 256 to 65535: "fits in two bytes" 65536 and up: "hold on big fella" 2) In your handin/hw9/ directory, use emacs to create a file called count.c. The program should print the numbers from 15 up to 45, each number on its own line, using a loop. 2b) Modify your count.c so it prints only the odd numbers between 15 and 45. 2c) Modify your count.c so it prints stars, *, after each number. For the number 15 it should print 15 stars, for the number 45 it should print 45, etc.