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
Can you tell me how to check whether a linked list is circular?
What is local and global variable in c?
What do the functions atoi(), itoa() and gcvt() do?
what is the difference between #include<> and #include”…”?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
How can we open a file in Binary mode and Text mode?what is the difference?
what is diffrence between string and character array?
What are the storage classes in C?
What are c identifiers?
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above