What are advantages of C++ when comparing with C?
Answer Posted / k
c
c++ is object oriented program. the main advatage is we can reuse the code and well structured and secured...
c
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is c++ coding?
Can you help me with this one? Make a program that when a user inputed a Product Name, it will display its price, and when the user inputed the quantity of the inputed product, it will show its total price. The output must be like this: Product Name: Price: Quantity: Total Price: ..this is the list of products to be inputed: Cellphone - 1500 Washing Machine - 5200 Television - 6000 Refrigirator - 8000 Oven - 2000 Computer - 11000 thanks..:D
What is cin clear () in c++?
What is the extension of c++?
Describe friend function & its advantages.
Can notepad ++ run c++?
How can you link a c program with a c function?
Discuss the possibilities related to the termination of a program before entering the mainq method?
What is a Default constructor?
What is enum c++?
How are virtual functions implemented in c++?
How many types of scopes are there in c++?
Give an example of run-time polymorphism/virtual functions.
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 Comment on c++ standard exceptions?