Write a program to encrypt the data in a way that inputs a
four digit number and replace each digit
by (the sum of that digit plus 7) modulus 10. Then sweep the
first digit with the third, second digit
with the fourth and print the encrypted number.
No Answer is Posted For this Question
Be the First to Post Answer
Should the member functions which are made public in the base class be hidden?
What are the five basic elements of a c++ program?
What is the Diffrence between a "assignment operator" and a "copy constructor"?
What do nonglobal variables default to a) auto b) register c) static
Explain how would you handle a situation where you cannot call the destructor of a local explicitly?
When should we use container classes instead of arrays?
Is empty stack c++?
What is the difference in size of this two clasees? Class A { int a; char c; float f; } Class B { float f; char c; int a; }
Is C++ case sensitive a) False b) Depends on implementation c) True
How can we read/write Structures from/to data files?
what kind of projects are suitable for c and c++
What is a multimap c++?