F 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 } August 28, 2021 1 Min Read 0 255 August 28, 2021 1 Min Read 0 255 Answer : B . 40 Function and Scope Editor Continue Reading
W What is the output of this C code ? | Recursion Program in C | Recursion in C August 28, 2021 1 Min Read 0 1325 August 28, 2021 1 Min Read 0 1325 Answer : D. This code will generate an error. Recursion and Iteration Editor Continue Reading