Calculating Fibonacci Numbers Recursively in C

后端 未结 6 1171
名媛妹妹
名媛妹妹 2021-01-14 01:52

I\'m trying to learn C by writing a simple program to output Fibonacci numbers. It isn\'t working.

fibonacci.h

unsigned int fibonacc         


        
6条回答
  •  有刺的猬
    2021-01-14 02:37

    You have the main() function defined twice in your project. This is the entry point of your program, and you only need one.

提交回复
热议问题