EECS 2031 Software Tools
Latest uploads at EECS 2031 Software Tools. Looking for notes at EECS 2031 Software Tools? We have lots of notes, study guides and study notes available for your school.
-
1
- 0
- 0
All courses for EECS 2031 Software Tools
-
EECS 2031 Software Tools 1
Latest content EECS 2031 Software Tools
Question 1 (14.5 pts) 
1.1 (0.25 pt) For the following code fragment, what is the output of the printf() statement? 
int x = 9, y = 13, z = 3; 
printf("z: %dn", z *= y + x + 2 ); z: 
1.2 (1 pt) What is the output of the printf() statement? 
int x = 2, y = x << 2; 
printf("%d %d %d %dn", x, y, x|y, x&y); 
1.3 (1 pt) What is the output of the printf() statement? 
int x = 13, y = z = 10; 
y = x++; z += y++; 
printf("x:%d y:%d z:%dn", x,y,z); 
1.4 (1 pt) What is the output of the p...
- Exam (elaborations)
- • 15 pages's •
-
EECS 2031 Software Tools•EECS 2031 Software Tools