Latest Gate Aptitude Question SOLUTION: int get(int n) { if n<1 get(n-1); get(n-3); return (0); } If get(6) is called through main then how many times get() function is called?