what is the basic concept of c++(object oriented programing)
Answer Posted / rider
class and objects
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain explicit container.
Write a program which employs Recursion
What does it mean to declare a destructor as static?
How would you call C functions from C++ and vice versa?
Define copy constructor.
How does list r; differs from list r();?
how can i access a direct (absolute, not the offset) memory
address?
here is what i tried:
wrote a program that ask's for an address from the user,
creates a FAR pointer to that adress and shows it. then the
user can increment/decrement the value in that address by
pressing p(inc+) and m(dec-).
NOW, i compiled that program and opened it twice (in 2
different windows) and gave twice the same address to it.
now look what happen - if i change the value in
one "window" of the program, it DOES NOT change in the
other! even if they point to the same address in the memory!
here is the code snippet:
//------------------------------------------------------
#include Write a program to find the Fibonacci series recursively. What are the data types in c++? explain the reference variable in c++? Does c++ support multilevel and multiple inheritances? Where and why do I have to put the "template" and "typename" keywords? What are formatting flags in ios class? What is setfill c++? What is a literal in c++?