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

higher-math-03.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;
    }