CÂ Program to Find the Sum of Fibonacci Numbers at Even Indexes up to N Terms
Here, we will build a C Program to Find the Sum of Fibonacci numbers at even indexes up to N termsFibonacci Numbers: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, â¦â¦Input: N = 5Output:88 // Sum of the elements at even indexes = 0 + 1 + 3 + 8 + 21 + 55 = 88Approach:This approach includes solving the