Skip to content
Snippets Groups Projects
Select Git revision
  • f74a180c323d4905fc637e9cf6cc1b94ba23632f
  • master default protected
  • refactoring
  • push_test
  • qpong_opengl
  • push_to_gitlab
  • feature_imgui_opengl
  • feature_google_test_integration
  • feature_config
  • merge_ci_and_googletest
  • feature_pixbuf
  • feature_heapBuffer
12 results

CMakeLists.txt

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