Answer Posted / nekkanti rajesh
an array is a collection of elements of a single data type
stored in adjacent
<data_type><variable_name>[<dimension_size>];
ex:
int arr[5];
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Define pointers?
What is data abstraction? How is it different from data encapsulation?
What is a loop? What are different types of loops in c++?
Explain the difference between new() and malloc() in c++?
Am studying basic c++ programming, have been given the following assignment. Design a linear program to calculate the maximum stress a material can withstand given a force and a diameter of a circle. To find the required area pi should be defined. Have most of the program sorted out but am at a loss as to how to show the calculations required. Can anyone help?
How are the features of c++ different from c?
What are smart pointers?
What is a forward referencing and when should it be used?
Is it possible to provide special behavior for one instance of a template but not for other instances?
Explain all the C++ concepts using examples.
what kind of projects are suitable for c and c++
What is the rule of three?
Evaulate: 22%5 a) 2 b) 4 c) 0
List down the guideline that should be followed while using friend function.
How does a copy constructor differs from an overloaded assignment operator?