Please implement following number series, FiboGorki numbers using a recursive function:
FiboGorki = 1 3 5 9 17 31 57 105 193......
Starting from the 4th element, each element is a summation of previous 3 numbers.
Your function prototype should be:
int FiboGorki(int n)
User Profile
Collapse
-
help me for my midterm
Please write a C code that prints out ONLY even index elements of the following array.
arr = {5, 2, 6, 10, 4, 18, 3, 4, 7} -
ı need just expression please help me it takes your one minute
Please give me the expression needed to compare whether A and B are NOT equal to each other. -
convert the switch case to if else
Convert the following switch-case code to an if-else code.
Code:switch ( i ) { case 0: n = 2; break; case 1: n = 12; break; case 2: n = 5 * 5; break; case 3: n = 28; break; default: n = 0; break; } -
True or false question ı need help
The expression !(x<=y) is same as the expression x>y. -
True or false
A || B is True (1) if A is true and B is also true, False (0) otherwise.
No activity results to display
Show More