M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE July, 2014 Solved
1. Multiple Choice
1.1 : B
Explanation : void is used to indicate that a function will not be return
any data to calling function. You should also use void in place of argument for
when function does not takes argument but it’s optional.
If you left blank of return type then int will be consider as
default return type of given function.
1.2 : C
1.3 : B
Explanation : Name of an array is constant pointer which point first
element when 5 added to pointer then it jump 5 places to forward direction.