who is the founder of c++?
Answers were Sorted based on User's Feedback
swapping program does not use third variable
What is polymorphism in oops with example?
what are three tenets of object orinted Systems?Why they call like that ? Please answer me. Advance thanks.
What does and I oop mean?
//what is wrong with the programme?? #include<iostream.h> template <class first> class dd { first i; public: void set(); void print(); }; void dd< first>:: set() { cin>>i; } void dd< first>::print() { cout<<"\n"<<i; } void main() { dd <char>g; g.set(); g.print(); }
If a=5, b=6, c=7, b+=a%c*2. What is the final value of b?
WHAT IS THE DIFFERENCE BETWEEN ABSTRUCTION AND ENCAPSULATION? PLEASE EXPLAIN IT.
What is variable example?
What is property in oops?
i=20;k=0; for(j=1;k-i;k+=j<10?4:3) { cout<<k; } //please comment on the output
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
What is Inheritance, Multiple Inheritance, Shared and Repeatable Inheritance?