What is recursion in C ? By webmaster No Comment Recursion is a process that happens when a function calls a copy of itself to work on any smaller problem. Any function that...
What is the output of the following pseudo code ? Int a = 456, b, c, d = 10; b = a/d; c = a-b; print c ? By Editor No Comment Answer : B. 411
Integer a =40, b =35, c=20, d =10 Comment about the output of the following two statements Print a*b/c-d Print a*b/(c-d) ? By Editor No Comment Answer : A . Differ by 80