What is scope in c++ with example?
No Answer is Posted For this Question
Be the First to Post Answer
C++ program output? Explain output of this program. #include <iostream> using std::cout; using std::cin; int main() { cout<<cout<<' '; cout<<cin; return 0; } It prints some address in hexadecimal. what is it?
What is the difference between while and do while loop? Explain with examples.
In a function declaration what does extern means?
What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00
What is algorithm in c++ programming?
Why was c++ created?
What operator is used to access a struct through a pointer a) >> b) -> c) *
Define the process of handling in case of destructor failure?
Is it possible for a member function to delete the pointer, named this?
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.
What will happen if I allocate memory using "new" and free it using "free" or allocate sing "calloc" and free it using "delete"?
Write some differences between an external iterator and an internal iterator?