What do you mean by overloading?
No Answer is Posted For this Question
Be the First to Post Answer
How to reverse a sentence in c program ex: ram is a good boy answer: boy good a is ram
tel me oops defination in single line
c++ provides classes...and classes do what we want but why then strcut are used...if we say data hiding... it is also provided by c++ in structs then why to prefer clasess
#include <iostream> using namespace std; int main() { int a = 3; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][2]; }
What is the difference between a mixin and inheritance?
what are the ways in which a constructors can be called?
What does enum stand for?
In multiple inheritance , to create sub class object , is there need to create objects for its superclasses??? in java and c++ both. Actually i have some information that is , all available members from its superclasses , memory created in subclass obj , so no need to create object for its superclasses...??? Thanks in Advance
when to use 'mutable' keyword and when to use 'const cast' in c++
Write a program to multiply 3x3 matrics
c++ is a pure object oriented programming or not?
what is meant by files?