What are the two types of comments, and how do they differ?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of bit fields in structure declaration?
string somestring ; Which of the following choices will convert a standard C++ string object "somestring" to a C string? a) Copy.somestring () ; b) somestring.c_str () c) &somestring [1] d) std::cstring (somestring) e) (char *) somestring
A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
What do you mean by inheritance in c++?
What do you know about friend class and friend function?
What are multiple inheritances (virtual inheritance)?
What are the 2 main types of data structures?
Is set c++?
Can you write a function similar to printf()?
What does namespace mean in c++?
What are static member functions?
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.