C/C++
stevens.lst
Associated article: C Programming
Tags: C/C++
_C Programming Column_ by Al Stevens /* ---------- Listing 1. crypto.c ------------ */ #include <stdio.h> #include <ctype.h> #include <string.h> char crypto [80]; /* encrypted message */ char decoded [80]; /* decrypted message */ char alphabet [] = "nabcdefghijklmnopqrstuvwxyz"; char ...


