Latest C Aptitude Question SOLUTION: Consider the following code: function modify(y,z) { y = y + 1 z = z + 1 return y - z } function calculate( ) { integer a = 12, b = 20, c c = modify(a, b); print a