What are the advantages of using pointers in a program?
No Answer is Posted For this Question
Be the First to Post Answer
Do the parentheses after the type name make a difference with new?
What is a container class?
What is #include ctype h in c++?
What is realloc() and free()? What is difference between them?
Why namespace is used in c++?
Given an array of size N in which every number is between 1 and N, determine if there are any duplicates in it. You are allowed to destroy the array if you like. [ I ended up giving about 4 or 5 different solutions for this, each supposedly better than the others ].
How the delete operator differs from the delete[]operator?
What is void pointer in c++ with example?
How many keywords are used in c++?
What is data binding in c++?
You're given an array containing both positive and negative integers and required to find the sub-array with the largest sum (O(N) a la KBL). Write a routine in C for the above.
What are the advantages of early binding?