.

C Programming C Code Fragment

Determine the output of the following C code fragment. You must trace the code to show how you reached the answer. (3 points) int i = 10; 3.2 Write your answer here. while (i>= 3) i i-1; if(i%2+= 0) continue; printf(" "In") i=i-1; if (i = 4) break; 4) 4.1 Determine the output of the following code segment. You must trace the code to show how you reached the answer. (2 points) int x = 2, y 3; x=x+y; y=x-y; x = x -y; printf("x is %d\n", x); printf("y is %d\n", y);

c-programming-c-code-fragment-1-img1
.