I want to write a program to compute the nth number of the fibonnacci sequence, which i had done using printf and scanf. But I was hoping to change my program so that the sequence number is entered at the command line rather than entered when prompted by the program. This is what i've come up with. It compiles, but then it crashes when i run it... not sure why. Any suggestions would be appreciated.
This is a program to compute the nth number of the fibonnacci code using iteration. I have written it as such: You must enter the number of the sequence you wish to compute at the command line argv[1]. The program then takes this command line argument and uses it in the while loop, and also prints this number.
#include <stdio.h>
int main( int argc, char**argv ) {
int fib[3] = {0,1};
int counter = 0;
printf("The %dth Fibonacci number is:\n", atoi(argv[1]));
while ( counter < atoi(argv[1]) ) {
fib[2] = fib[0] + fib[1];
fib[0] = fib[1];
fib[1] = fib[2];
counter++;
}
printf("%d\n", fib[0]);
getchar();
return 0;
}