#include int fib(int n); int main(int argc, char **argv) { for (int i = 0; i < 20; i++) printf("%d ", fib(i)); printf("\n"); return 0; }