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
Why is destructor used?
WHY FUCTION OVERLOADING DOSENOT RETURN A RETEN TYPE
What is a superclass in oop?
What is pointer in oop?
What is multiple inheritance ?
17 Answers Blue Star, C DAC, CDAC, Impetus, Ness Technologies, Softvision Solution,
What is the difference between class and structure?
1. Wrie a function which returns the most frequent number in a list of integers. Handle the case of more than one number which meets this criterion. public static int[] GetFrequency(int[] list)
The type of variable a pointer points to must be the part of pointer's definition so that:
what is the need of abstraction? what is abstraction?what is the abstraction for stack?
Difference between new operator and operator new
#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]]; }
Write a macro for swapping integers