C Code of Vernam Cipher - C and C++
April 6, 2017 | Author: Seaton Harns | Category: N/A
Short Description
Download C Code of Vernam Cipher - C and C++...
Description
1/20/2014
C Code Of Vernam Cipher - C And C++ | Dream.In.Code
view source print? 01#include 02#include 03#include 04 chara[27]= 05 {'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'}; 06intrnd[27]; 07intcode[10],i,j; 08charin[10],temp,out[10]; 09 10intmain (void) 11{
//----------------------------input-------------------------
12
clrscr();
13
printf("Please enter the input");
14
for(i=0;i
View more...
Comments