The tap code, sometimes called the knock code, is a way to encode text messages on a letter-by-letter basis in a very simple way. Tap code has been one of the most basic communication protocols and...


Note:


Solve using c++ programming language


Dont use string.


Read the instructions in the picture


The tap code, sometimes called the knock code, is a way to encode text messages on a<br>letter-by-letter basis in a very simple way. Tap code has been one of the most basic<br>communication protocols and still used to convey SOS messages and other urgent<br>communication. The tap code uses a 5×5 grid of letters representing all the English alphabets,<br>see Figure 1. To communicate the word

Extracted text: The tap code, sometimes called the knock code, is a way to encode text messages on a letter-by-letter basis in a very simple way. Tap code has been one of the most basic communication protocols and still used to convey SOS messages and other urgent communication. The tap code uses a 5×5 grid of letters representing all the English alphabets, see Figure 1. To communicate the word "water", the cipher would be the following (with the pause between each number in a pair being shorter (single space) than the pause between letters (two spaces)), see Figure 2 1 4 5 СК | D I J 2 3 В 2 F 3 L 4 Q 5 V Figure 1: Polybius square 5x5 grid G |H M N P R S T W x Y w A T E R 5, 2 1, 1 4, 4 1, 5 4, 2 .. .... ...... Figure 2 Your task is to design a program that can i) convert any given string into a Tap code sequence Prototype: char* convertToTapCode(char*) and A Tap code sequence to a string (char*) Prototype: char* convertToString(char*) ii) Note: You are not authorized to use string data type; however, you can use char*

Jun 05, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here