when to use 'mutable' keyword and when to use 'const cast'
in c++
No Answer is Posted For this Question
Be the First to Post Answer
In which Scenario you will go for Interface or Abstract Class?
1 Answers InfoAxon Technologies,
#include <iostream> using namespace std; int main() { int a = 2; 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][c[1][4]]; }
what is new modifier in C#
Petrol pump mgt. system: To design a program that display an interface for the sale of the Petrol and then make the entries at the backend in the database.
what are the disadvantages of C++?
25 Answers ATS, Infosys, UNI, Wipro,
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.
who is the father of OPPS
Should you protect the global data in threads? Why or why not?
what is the advantage in software? what is the difference between the software developer and Engineer
What do you mean by variable?
Can abstract class have normal methods?