Can you pass an array to a function in c++?
No Answer is Posted For this Question
Be the First to Post Answer
How is computer programming useful in real life?
What are Binay tress and B trees? Diff between them?
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 the hardest coding language to learn?
How const functions will be treated by compiler?
Explain the need for "Virtual Destructor"?
How do you establish an is-a relationship?
Explain one method to process an entire string as one unit?
Is c++ a dying language?
What is the difference between Char a[ ]=”string” and char *a=”String”
Explain the static storage classes in c++.
What is a mutex and a critical section.Whats difference between them?How do each of them work?