Question
You will create a program, cipher.c, which will encode a message by shifting each letter some number of places. Thus, if the shift is 2,
You will create a program, cipher.c, which will encode a message by shifting each letter some number of places. Thus, if the shift is 2, then A becomes C, B becomes D, and so on. Like this:
Surprisingly, you can do this by simply doing arithmetic with characters, but you should reassure C that the result is a character using a cast. If, for example, a letter contains the value 'A', then 'A'+ 2 gives the integer result 67, which you can turn back into a character by saying (char)(letter + 2), giving the value 'C'.
Unfortunately, (char)('Z' + 2) does not give you the letter 'B' (you can see why from the picture above). But if you realize you went past 'Z', you can subtract 26 (so the result is 'Z' + 2 - 26, or 'Z' - 24), and this will give you 'B'.
This also means that if you encode a message with a shift of n, you can decode it with another shift of 26 - n.
Your program should first call a function, processFile(), which reads a message from a file (congress.txt) into a very large character array. The function should convert all of the letters into uppercase characters. You may discard all the punctuation marks, digits, blanks, and anything else from the input sting.
Your program should then accept the amount to shift as an input to a function, cipher(). The input parameter should be 13, although for your testing purposes, you can simplify things by using a shift of 1. Your function should encode each letter by shifting it the correct amount, and put the encoded letters into null-terminated array of characters.
Finally, you should create a function, outputCode(), which outputs the final encoded message in blocks of five letters, ten blocks per line. The last line may be shorter than five blocks, and the last block may be shorter than five letters.
For example, given a shift of 1, the program will turn this:
Congress shall make no law respecting an establishment of religion, or prohibiting the free exercise thereof; or abridging the freedom of speech, or of the press; or the right of the people peaceably to assemble, and to petition the government for a redress of grievances.
into this:
DPOHS FTTTI BMMNB LFOPM BXSFT QFDUJ OHBOF TUBCM JTINF OUPGS
FMJHJ POPSQ SPIJC JUJOH UIFGS FFFYF SDJTF UIFSF PGPSB CSJEH
JOHUI FGSFF EPNPG TQFFD IPSPG UIFQS FTTPS UIFSJ HIUPG UIFQF
PQMFQ FBDFB CMZUP BTTFN CMFBO EUPQF UJUJP OUIFH PWFSO NFOUG
PSBSF ESFTT PGHSJ FWBOD FT
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z A B C D E F G H I J K L M N O P R S T U V W X Y Z
Step by Step Solution
3.43 Rating (156 Votes )
There are 3 Steps involved in it
Step: 1
include include void processFilechar String1000 F...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started