
What is the output of the following
class recursion{int func (int n){int result;if (n == 1)return 1;result = func (n - 1);return result;}}class Output{public static void main(String args[]){recursion obj = new recursion() ;System.out.print(obj.func(5));}}
#include<stdio.h>int fun(int, int);typedef int (*pf) (int, int);int proc(pf, int, int);int main(){printf("%d\n", proc(fun, 6, 6));return 0;}int fun(int a, int b){return (a==b);}int proc(pf p, int a, int b){return ((*p)(a, b));}
The term 'Terror of Bengal' is used for ?