Question: Task # 1 - ( 5 0 points ) encrypted message exists. Requirements Name your program project 5 _ decrypt.c . Assume the input length
Task # points
encrypted message exists.
Requirements
Name your program projectdecrypt.c
Assume the input length for the string is no more than characters.
Assume the input string contains only lowercase alphabetic letters.
The program should include the following function:
void decryptchar input char output;
The function expects input contain the input string and output stores the decrypted string.
This function should use pointer arithmetic not subscripting to visit array elements. In other words, eliminate the loop index variables and all use of the operator in the function.
String library functions are NOT allowed.
main function calls the decrypt function and displays the output.
Follow the format of the examples below.
Examples your program must follow this format precisely
Example #
Enter message: siisss
Output: sis
Example #
Enter message: teemmmpppp
Output: temp
Example #
Enter message: npp
Output: np Using a X decoder module and a OR gate to implement the Boolean function fabcd abc a'cd.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
