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

higher-math-4.c

Blame
  • Forked from Peter Gerwinski / hp
    254 commits behind the upstream repository.
    higher-math-4.c 115 B
    #include <stdio.h>
    
    #define VIER 4;
    
    int main (void)
    {
      printf ("Drei mal vier = %d.\n", 3 * VIER);
      return 0;
    }