What is data abstraction? How is it implemented in C++?
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantages/disadvantages of using inline and const?
Explain why C++ is not purely Object Oriented Language
What is static variable and difference between(const char *p,char const *p,const char* const p).
What is the difference between malloc, calloc and realloc?
Explain encapsulation in C++.
What is a memory leak in C++?
Factory Method C++ – How to delete pointers returned by it
Write a program to read two numbers from the keyboard and display the larger value on the screen
Question on Copy constructor.
When would you choose to return an error code rather than throw an exception?
Explain the importance of method overloading in C++?
0 Answers Akamai Technologies, Infogain,
Identify the error in the following program. #include<iostream.h> void main() { int i = 0; i = i + 1; cout « i « " "; /*comment *//i = i + 1; cout << i; }