Why is c++ still best?
No Answer is Posted For this Question
Be the First to Post Answer
What is object file? How can you access object file?
What is compilation?
Will a C compiler always compile C++ code a) Yes b) No c) Only optimized compilers
Describe friend function & its advantages.
What is c++ coding?
What are c++ storage classes?
What is function overriding in c++?
What is scope resolution operator in c++ with example?
What is cout flush?
Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work
C++ program output? Explain output of this program. #include <iostream> using std::cout; using std::cin; int main() { cout<<cout<<' '; cout<<cin; return 0; } It prints some address in hexadecimal. what is it?
Explain the benefits of proper inheritance.