Find the output : function modify(a,b) { Integer c,d=2 c= a*d+ b return c } Function calculate () { Integer a = 5, b = 20, c Integer d= 10 c = modify (a, b); c = c+ d Print c } Answer : B . 40 View Answer
What is the output of this C code ? | Recursion Program in C | Recursion in C Answer : D. This code will generate an error. View Answer