Sign in
Please select an account to continue using cracku.in
↓ →
The time complexity of the following C function is (assume n > Q):
int recursive (int n) {
if (n == 1)
return (1);
else
return (recursive (n -1) + recursive (n -1));
}
Create a FREE account and get: