Differentiate between an inspector and a mutator ?
No Answer is Posted For this Question
Be the First to Post Answer
How new/delete differs from malloc()/free?
There is a array of 99 cells and we have to enter 1-100 elements in it , no two elements would repeat , so the is one no. missing because 99 cells and 1-100 nos. so we had to implement a function to find that missing no.
program explaining feautures of c++
How can a struct in c++ differs from a struct in c?
what is the use of templates?
What is scope resolution operator in c++ with example?
What is the use of class in c++?
What is the extraction operator and what does it do?
What are libraries in c++?
Explain the difference between using macro and inline functions?
Where and why do I have to put the "template" and "typename" keywords?
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?