Skip to content
Snippets Groups Projects
Select Git revision
  • 5cda89f19216afec14fad4775ca4d4ba07418703
  • master default protected
  • cvh
  • main
4 results

CODE_OF_CONDUCT.md

Blame
  • loesung-3-1.c 215 B
    #include <stdio.h>
    
    int main (void)
    {
      int f0 = 0;
      int f1 = 1;
      for (int i = 0; i < 50; i++)
        {
          printf ("f[%d] = %d\n", i, f0);
          int f2 = f0 + f1;
          f0 = f1;
          f1 = f2;
        }
      return 0;
    }