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
What is linked list in c++?
Define a way other than using the keyword inline to make a function inline?
Why c++ is better than c language?
How many types of classes are there in c++?
What is new in c++?
What does the following do: for(;;) ; a) Illegal b) Loops forever c) Ignored by compiler...not illegal
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;
What do you mean by internal linking and external linking in c++?
How to avoid a class from instantiation?
How can you quickly find the number of elements stored in a static array?
Why did you leave your last job?
What is a lambda function c++?