fork download
  1. #define SIX 1 + 5
  2. #define NINE 8 + 1
  3.  
  4. int main(void) {
  5. printf( "SIX * NINE = %d", SIX * NINE );
  6. return 0;
  7. }
Success #stdin #stdout 0s 2052KB
stdin
Standard input is empty
stdout
SIX * NINE = 42