I\'m trying to learn C by writing a simple program to output Fibonacci numbers. It isn\'t working.
fibonacci.h
unsigned int fibonacc
You have the main() function defined twice in your project. This is the entry point of your program, and you only need one.
main()