What is c++ prototype?
No Answer is Posted For this Question
Be the First to Post Answer
Can you be able to identify between straight- through and cross- over cable wiring? And in what case do you use straight- through and cross-over?
What is atoi in c++?
What is abstraction c++?
Which bit wise operator is suitable for turning off a particular bit in a number?
Is map ordered c++?
Explain how to initialize a const data member.
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
Is dev c++ a good compiler?
Why null pointer is used?
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.
What are protected members in c++?
What is a node class?