What is increment operator in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Which of the Standard C++ casts can be used to perform a ?safe? downcast: a) reinterpret_cast b) dynamic_cast c) static_cast d) const_cast
What is stoi in c++?
What do you mean by volatile and mutable keywords used in c++?
Define private, protected and public access control.
How do you define a class in c++?
Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?
What are the basic data types used in c++?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ?
What is void pointer in c++ with example?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.
what is Loop function? What are different types of Loops?
write a program to insert an element into an array