aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/fib.c
blob: 62a9a0739c1c0ffe88330f6127fab5cae38da1cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
int main()
{
   unsigned long int n, first = 0, second = 1, next, c;

   n = 10;
 
   for ( c = 0 ; c < n ; c++ )
   {
      if ( c <= 1 )
         next = c;
      else
      {
         next = first + second;
         first = second;
         second = next;
      }
   }
 
   return next;
}