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
How is computer programming useful in real life?
Can user-defined object be declared as static data member of another class?
Explain how to initialize a const data member.
What is setf in c++?
What is token c++?
What do you mean by translation unit in c++?
Which operations are permitted on pointers?
Is c++ a software?
Why is null pointer used?
how to explain our contribution in the project?
What is object file? How can you access object file?
How do I use turbo c++?
Write a Program for dynamically intialize a 2 dimentional array. Eg:5x20, accept strings and check for vowels and display the no.finally free the space allocated .
What is data structure in c++?
Will a recursive function without an end condition every quit, in practice a) Compiler-Specific (Some can convert to an infinite loop) b) No c) Yes