Answer Posted / ravi
Bjarne Stroustrup
| Is This Answer Correct ? | 25 Yes | 4 No |
Post New Answer View All Answers
Write about all the implicit member functions of a class?
How would you call C functions from C++ and vice versa?
What are c++ storage classes?
Can constructor be static in c++?
What is #include cstdlib in c++?
What is std :: endl?
How does a C++ structure differ from a C++ class?
What is lvalue?
Can we declare a base-class destructor as virtual?
Can a Structure contain a Pointer to itself?
What is the meaning of c++?
Can I learn c++ without c?
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 You run a shell on unix system. How would you tell which shell are you running? What is the difference between cin.read() and cin.getline()?