1 #include <stdio.h> 2 3 intro() 4 { 5 extern char *dim, *bright; 6 7 printf ("\n\nMany cycles ago, in the kingdom of N'Dic, the gnomic\n"); 8 printf ("wizard ZOT forged his great *ORB OF POWER*. He soon\n"); 9 printf ("vanished, leaving behind his vast subterranean castle\n"); 10 printf ("filled with esurient monsters, fabulous treasures, and\n"); 11 printf ("the incredible %s*ORB OF ZOT*%s. From that time hence, many\n",bright,dim); 12 printf ("a bold youth has ventured into the wizard's castle. As\n"); 13 printf ("of now, *NONE* has ever emerged victoriously! BEWARE!!\n"); 14 15 return 0; 16 } 17 18