Skip to content
Snippets Groups Projects
Select Git revision
  • afb47a1dd898b593df2db2a6d2d1f0121fdea375
  • master default
2 results

loesung-3-20170206-6.c

Blame
  • Forked from Peter Gerwinski / hp
    Source project has a limited visibility.
    higher-math-03.c 142 B
    #include <stdio.h>
    
    #define NINE (1 + 8)
    #define SIX (5 + 1)
    
    int main (void)
    {
      printf ("nine times six = %d\n", NINE * SIX);
      return 0;
    }