C Programming

CLASS EXERCISE C17

What is the outcome of the following, assuming time=2, a=3, b=4, c=5


	time -= 5;
	a *= b + c;

	
	time = -3
	a = 27

©Copyright B Brown. 1984-1999. All rights reserved.