Sir,please help me out with the code of this question.
Write an interactive C program that will encode or decode
multiple lines of text. Store the encoded text within a
data file, so that it can be retrieved
and decoded at any time. The program should include the
following features:
(a) Enter text from the keyboard, encode the text and store
the encoded text in a data file.
(b) Retrieve the encoded text and display it in its encoded
form.
(c) Retrieve the encoded text, decode it and then display
the decoded text.
(d) End the computation.
Test the program using several lines of text of your choice.
No Answer is Posted For this Question
Be the First to Post Answer
How to avoid structure padding in C?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
In a switch statement, what will happen if a break statement is omitted?
What are structure types in C?
Explain what is the difference between null and nul?
What are local and global variables?
what is the difference between char * const and const char *?
how to find out the reverse number of a digit if it is input through the keyboard?
How many types of operator or there in c?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is double pointer?