#32708 - sgeos - Sat Dec 25, 2004 5:22 am
Code: |
#include <stdio.h>
/* if you are offended by the notion of an * xmas post, set this to a non zero value. */ #define OFFENDED_BY_NOTION_OF_XMAS_POST 0 /* customize your xmas message * maybe you speak a different language =) */ #define MERRY_XMAS_MESSAGE \ "Merry Christmas everybody!\n" /* customize your hello world message * maybe you speak a different language =) */ #define HELLO_WORLD_MESSAGE \ "Hello world!\n" int main(void) { if ( ! OFFENDED_BY_NOTION_OF_XMAS_POST ) printf(MERRY_XMAS_MESSAGE); else /* is OFFENDED_BY_NOTION_OF_XMAS_POST */ printf(HELLO_WORLD_MESSAGE); return 0; } |
-Brendan