What are functions in oop?
No Answer is Posted For this Question
Be the First to Post Answer
What is inheritance in simple words?
What are the types of abstraction?
What is memory leak and memory corruption?
what is a class
can you explain how to use JavaBean in Project
What is class and example?
Explain the advantages of inheritance.
Difference between over loading and over ridding?
12 Answers CTS, Patni, Softvision Solution,
Pls...could any one tell me that whether we can access the public data memeber of a class from another class with in the same program. Awaiting for your response Thanku
what is ltti
what is opps?why it is use in programming language?
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; wow *b; a.x = 22; b = &a; a.x = 23; cout << b->x; return 0; }