What is called array?
Answer / Pratap Singh Chauhan
"An array in C++ is a collection of elements of the same data type stored at contiguous memory locations. Elements can be accessed using an index."
| Is This Answer Correct ? | 0 Yes | 0 No |
Name the debugging methods that are used to solve problems?
How one would use switch in a program?
Why is it called c++?
What character terminates all character array strings a) b) . c) END
What is guard code in c++?
What is the need of a destructor?
Differentiate between declaration and definition.
write a program to insert an element into an array
What do you mean by call by value and call by reference?
What is c++ try block?
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 is pre-processor in C++?