Select Git revision
This project manages its dependencies using Bundler.
Learn more
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;
}