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 } By Editor No Comment Answer : B . 40
What is the output of this C code ? | Recursion Program in C | Recursion in C By Editor No Comment Answer : D. This code will generate an error.