Check-in 34
If you attend class on 11/17, you will have a chance to do this assignment in-class for the C34 grade

Draw the control-flow graph for the following function:

			f:void(){
				a:int;
				a = 256;
				while(true){
					if (a > 500){
						a = a++;
					}
				}
			}
			

If you skip class on 11/17, you should complete the above assignment on your own.
Turn your work in on Canvas to the C34 folder by 11:59 PM on 11/19 (the Sunday following 11/17).