If you turned in a solution in class, you already got credit for this assignment. Otherwise, answer the following and submit to the E23 box on Canvas.

Exercise 23

Draw the forward slice from line 2 in the following program:

int main(int argc, const char * argv[]){
	const char *a = argv[1];
	int b = argc;
	if (a[0] == 'a'){
		if (b > 2){
			return 3;
		}
	} else {
		b = 4;
	}
	b = 7;
	return 3;
}