/* Sucess„o de Fibonacci */ #include main() { int a=1, b=1, c=2; while (c<2000) { printf("Valor de c:%d\n", c); a=b; b=c; c=a+b; } }