Skip to content
Snippets Groups Projects
Select Git revision
  • f3693cc42b9a4bbe9773ae03cba0a7bf7c573f88
  • master default protected
  • 2018ws
  • 2017ws
  • 2016ws
5 results

hp-slides-2019ws.tex

Blame
  • Forked from Peter Gerwinski / hp
    Source project has a limited visibility.
    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;
    }