Question
using C programming language First I have a crypt.csv file and contain follows: a,y b,w c,n d,e e,s f,r g,u h,k i,p j,z k,x l,t
using C programming language
First I have a crypt.csv file and contain follows:
a,y b,w c,n d,e e,s f,r g,u h,k i,p j,z k,x l,t m,v n,f o,o p,j q,i r,b s,m t,a u,d v,h w,g x,q y,l z,c where the plaintext alphabet appears before the comma, and the ciphertext alphabet appears after the comma.
I also have a text.txt file contains: p shot ufpadjvon I want to DECRYPT the above words in txt file using the above csv file, which mean replace the letters in txt file with the corresponding letter from the plaintext alphabets. So p should replace with i, etc. And output the result in reverse order. Output would be: i love computing
Step by Step Solution
There are 3 Steps involved in it
Step: 1
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