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;
}
link|improve this question

75% accept rate
Hmmm. How come I can never get all my code in one blue box to make it look decent! – Laura Boyle Mar 15 '11 at 16:28
Use the Ctrl-K formatting option for code text. – wallyk Mar 15 '11 at 16:30
Ok, will do from now on thanks! – Laura Boyle Mar 15 '11 at 16:32
you're initialzing the array to have just 3 elements? – Morpheus Mar 15 '11 at 16:32
are you giving it a command line option? – mvds Mar 15 '11 at 16:33
show 3 more comments
feedback

3 Answers

Check if the user actually passed an argument:

int main( int argc, char**argv ) {
    if (argc < 2) {
        printf("Usage: %s number\n", argv[0]);
        return 1;
    }
    ...
}

If he didn't, argv[1] is null, and you'll crash

link|improve this answer
That was it, thanks! – Laura Boyle Mar 15 '11 at 16:48
Actually, I tried it again with this, made sure to enter a positive integer at the command line, and i'm still getting a segmentation fault – Laura Boyle Mar 16 '11 at 13:24
@Laura Boyle: Post updated code, and the command you execute. – Erik Mar 16 '11 at 13:29
#include <stdio.h> int main( int argc, char**argv ){ if (argc < 3) { printf("ERROR! Usage: '%s' n, Where n is a positive integer", argv[2]); getchar(); return 1; } else { int fib[2] = {0,1}; int counter = 0; printf("The %dth Fibonacci number is:\n", (argv[3])); while ( counter < atoi(argv[3]) ) { fib[2] = fib[0] + fib[1]; fib[0] = fib[1]; fib[1] = fib[2]; counter++; } printf("%d\n", fib[0]); } getchar(); return 0; } – Laura Boyle Mar 16 '11 at 13:36
./a.out fib.c 3 – Laura Boyle Mar 16 '11 at 13:37
show 1 more comment
feedback

The program should check if a command line argument is present:

if (argc < 2)
{
    printf ("usage:  %s n\n  where n is a positive integer\n", argv[0]);
    return 1;
}

If no argument is supplied, it will probably crash.

= = = = = edit = = = = =

I don't see any cause for a crash once the bug above is fixed. This works okay:

#include <stdio.h>
int main( int argc, char**argv )
{
        int fib[3] = {0,1};
        int counter = 0;
        if (argc < 2)
        {
                printf ("usage: %s number\n", argv[0]);
                return 1;
        }

        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]);
        return 0;
}


[wally@zenetfedora ~]$ ./a.out 
usage: ./a.out number
[wally@zenetfedora ~]$ ./a.out 3
The 3th Fibonacci number is:
2
[wally@zenetfedora ~]$ ./a.out 4
The 4th Fibonacci number is:
3
[wally@zenetfedora ~]$ ./a.out 5
The 5th Fibonacci number is:
5
[wally@zenetfedora ~]$ ./a.out 6
The 6th Fibonacci number is:
8
[wally@zenetfedora ~]$ ./a.out 7
The 7th Fibonacci number is:
13
[wally@zenetfedora ~]$ ./a.out 8
The 8th Fibonacci number is:
21
[wally@zenetfedora ~]$ ./a.out 9
The 9th Fibonacci number is:
34
[wally@zenetfedora ~]$ ./a.out 10
The 10th Fibonacci number is:
55
link|improve this answer
Thanks, I did this but still when I enter a positive integer (3 say) It tells me I have a segmentation fault(core dumped). I know what a segmentation fault is, but don't understand the "core dumped" bit. – Laura Boyle Mar 16 '11 at 13:23
"Core dumped" means the memory contents of your process was (or could have been) written to disk for later analysis. Many, if not most, Linux distributions provide a default resource limit which prevents the core file from being written (rendering the message misleading): type ulimit -a to see the settings: a "core file size" of zero is typical. To enable it, try something like ulimit -c 5000 which gives a 5 megabyte limit. – wallyk Mar 17 '11 at 7:41
feedback

What number did you test it with? Because an int won't be able to hold anything higher than the ~50th Fibonacci number. I had to do something like this in my Algorithms class and we had to find the 239th Fibonacci number which was 64202014863723094126901777428873111802307548623680 Which is something an int nor a long can hold correctly.I don't think that would make it crash but just giving a heads up if you need to find a large Fibonacci number.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.