home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo ********** Compiling all programs for IMC January 1991
- echo *
- echo * Welcome to the mouse
- cl mouse1.c /link graphics > compile.log
- echo *
- echo * (L) Setting files and devices to binary mode
- cl ljtest1.c >> compile.log
- echo *
- echo * Some encryption methods
- cl trapdoor.c >> compile.log
- echo *
- echo * The XOR operator
- rem there's no program for this tip -- but we use the XOR operator
- rem in the program TRAPDOOR.C for "Some encryption methods"
- echo *
- echo * The setjmp() and longjmp() functions
- rem there's no program for this article
- echo *
- echo * Is the goto statement really harmful?
- rem there's no program for this article
- echo *
- echo * Passing arrays by value in C
- rem there's no program for this tip
- echo *
- echo ********** All done .. results of compiles are in COMPILE.LOG
-