I am currently coding a program that does some manipulating of the fibonacci series, but I have had problems with numbers being to large for the variable they are held in! I have attached the coe here. Is there a way someone can suggest that I can store the rest of the sequence without an overflow (I need to go up to 100).
Make some structs to represent numbers with all the precision you need, and then write some functions to manipulate them. For this, add() and print() would probably suffice. Set your array of structs up, and blissfully add() and print() them to your heart's content. Not very elegant, but it'll work.
Oh, and *please* return 0; Your compiler should be complaining. Whatever anyone tells you, main() is does *not* have void return type.