Answer Posted / chandrakanthvellanki
an array is a FIXED-SIZE sequenced collection of elements
of the same data type
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Suppose that data is an array of 1000 integers. Write a single function call that will sort the 100 elements data [222] through data [321].
Comment on local and global scope of a variable.
Explain what is class definition in c++ ?
What is the type of 'this' pointer?
Explain the difference between using macro and inline functions?
What are the data types in c++?
We all know that a const variable needs to be initialized at the time of declaration. Then how come the program given below runs properly even when we have not initialized p?
How can we access protected and private members of a class?
What are the syntactic rules to be avoid ambiguity in multiple inheritance?
Show the declaration for a static member variable.
Can we use this pointer in a class specific, operator-overloading function for new operator?
State the difference between pre and post increment/decrement operations.
What does new in c++ do?
Declare a class vehicle and make it an abstract data type.
What is a memory leak c++?