What is property in oops?
No Answer is Posted For this Question
Be the First to Post Answer
WRITE A SIMPLE C++ PROGRAM TO SWAP TWO NOS WITHOUT USING TEMP
What is overriding in oops?
What is the difference between static polymorphism and dynamic polymorphism?
Difference ways of Polymorphism?
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; a.x = 22; int c = a.x; int *b = new int; cout << c; return 0; } option: No output 0 22 -(11) Will not compile
Write a program to accept a number and to print numbers in pyramid format? for eg:for a no. 5 1 212 32123 4321234 543212345
In c++ there is only virtual destructors, no constructors. Why?
Which language is pure oop?
design class for linked list and include constructor,destructor,insert option. node of form struct node { int data; struct node &ptr; }
3. Differentiate verification and validation.
Is following functions are said to be overloaded? int add(int a,int b) char *add(int a,int b)
What does it mean when someone says I oop?