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.
In a function declaration, what does extern mean?
What is the output of the following 3D Array int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12}; what is the output for arr[2][1][0]?
6 Answers HCL, Integra, IPMC, ORG,
What is buffering in c++?
Do class declarations end with a semicolon?
Which is most difficult programming language?
Can static member variables be private?
Under what conditions is multiple inheritance not recommended?
What is the use of lambda in c++?
What is while loops?
Define basic type of variable used for a different condition in C++?
What is a stack? How it can be implemented?
What is c++ stringstream?