mirror of
git://repo.or.cz/tinycc.git
synced 2026-06-17 23:54:16 +08:00
Some checks are pending
build and test / test-x86_64-linux (push) Waiting to run
build and test / test-x86_64-osx (push) Waiting to run
build and test / test-aarch64-osx (push) Waiting to run
build and test / test-x86_64-win32 (push) Waiting to run
build and test / test-i386-win32 (push) Waiting to run
build and test / test-armv7-linux (push) Waiting to run
build and test / test-aarch64-linux (push) Waiting to run
build and test / test-riscv64-linux (push) Waiting to run
Allow 'make speedtest' in tests directory Fix compiler warning tccpp.c
24 lines
372 B
C
24 lines
372 B
C
#include <tcclib.h>
|
|
|
|
int fib(int n)
|
|
{
|
|
if (n <= 2)
|
|
return 1;
|
|
else
|
|
return fib(n-1) + fib(n-2);
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
int n;
|
|
if (argc < 2) {
|
|
printf("usage: fib n\n"
|
|
"Compute nth Fibonacci number\n");
|
|
return 1;
|
|
}
|
|
|
|
n = atoi(argv[1]);
|
|
printf("fib(%d) = %d\n", n, fib(n));
|
|
return 0;
|
|
}
|