#1 due Wednesday, #2 and #3 do them by 9/2 2 points / problem Put files in ~/HW/lab05/ 1. quiz2 #1, call it lab05_quiz2.c 2. By the end of Saturday, put a file in your cs202 account ~/HW/lab05/quiz3_mine.txt with one question asking for what the value of some expression or few statements is. You must use at least 3 binary operators. Put the answer as well; note - you should type it in and try it Note - if you have all of the lab's done (including lab04), give us a complicated one (like below). If you don't, give us an easier one. For example, complicated - char c = 'a'; c -= c+= ++c; c = c >> 1 | 0x05; printf("%i, %c\n", c, c); For example, easier - char s[10] = "abcdef"; for(int i=0; i < 6; i+= 2) s[i] += i; 3. In your quiz3_mine.txt file, add one question that asks about one of the keywords. Put the answer in as well. Your keyword is For example, * For the keyword static, what does it do for global variable, and what does it do for a local variable? * How many bytes does the following variable take in memory: long int x;