Is c++ the most powerful language?
Explain what are single and multiple inheritances in c++?
What is an undefined reference/unresolved external symbol error and how do I fix it?
Write about the access privileges in c++ and also mention about its default access level?
what is the difference between linear list linked representaion and linked representation? what is the purpose of representing the linear list in linked represention ? is it not avoiding rules of linear represention?
What is a rooted hierarchy?
What are the two shift operators and what are their functions?
What is pointer to array in c++?
Is c better than c++?
What is the difference between a template and a macro?
When do we run a shell in the unix system?
What is the difference between public, private, and protected access?
What is the use of seekg in c++?
What is std namespace in 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