#include "C:\Practice Programs\Puzzle Feuer\Puzzles\defs.h" // This int has global scope so it can be accessed as an extern in an other file. int i=1; void main() { auto int i, j; // There are two'i' one globle and one local. i = reset( ); for( j=1; j<=3; j++ ) { PRINT2(d,i,j); // All of these 'i', and 'j' are local. PRINT1(d,next()); PRINT1(d,last()); PRINT1(d,new(i+j)); } }// end main