Explain mutable storage class specifier.
No Answer is Posted For this Question
Be the First to Post Answer
How do you print a string on the printer?
What is pointer in c++ with example?
reading material is provided 3 books for c++ if u need more do let me know thnx i hve lots of material do let me know if u want it
What is std::move?
pls help.. paper bills.. 1000, 500, 100, 50, 20, 10, 5, 1.. create a program that will count all the paper bills in the number being input.. example: enter a number: 3886 there is/are: 3 ->1000 1 ->500 3 ->100 1 ->50 1 ->20 1 ->10 1 ->5 1 ->1 example2: enter a number: 728 there is/are: 0 ->1000 1 ->500 2 ->100 0 ->50 1 ->20 0 ->10 1 ->5 3 ->1
How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?
What is difference between malloc()/free() and new/delete?
What are the different types of polymorphism in c++?
why can't we declare data member of class auto register or extern
What are manipulators used for?
Would you rather wait for quicksort, linear search, or bubble sort on a 200000 element array? (Or go to lunch...) a) Quicksort b) Linear Search c) Bubble Sort
If we declare two macro with the same identifier without doing undef the first, what will be the result? eg: #define MAX_SIZE 100 #define MAX_SIZE 200 int table1[MAX_SIZE];