answersLogoWhite

0

sorce code for student mark list usig array

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is an ordered list of data structure using c plus plus?

An ordered list of data in any programming language is simply a sorted array or list. In C++ this can either mean a sorted array, vector, list or forward list.


How do you implement stack without array?

Stacks are often implemented using the same node structure as a linked list.


What are the design issue for array?

What is its size? How is its size determined and when (compile/run-time). What does the software using the array do when the array is empty? partially full? full? Avoid the software addressing elements of the array which are undefined, or addressing elements outside the bounds of the array When and who is responsible for allocating and freeing memory when the array is no longer needed (program or called procedure start/termination) or some other time determined during program execution. If the array is implementing a data structure such as a stack, queue, dequeue, list, etc. What is its implementation of the usual data structure operations, Create, Empty, List Items, Top, First, Last, Next, etc.


Can a linked list implemented using an array be accessed by giving the location?

A linked list implemented with an array defeats the purpose of using a linked list, which is to address the memory allocation problems associated with arrays.


What is the difference between queues and circular queues?

A queue can use a dynamic array, or a linked list, but if using static memory, the queue becomes a circular queue because the underlaying data structure is a static circular array. This means the ends of the array are attached.


When you create a new data which object created first?

When you create new data, the first object created is typically the data structure that will hold it, such as an array, list, or database record. This structure provides a defined format and organization for the data being input. After that, the actual data elements are instantiated and stored within this structure.


How do you make a arrays of 18 pictures?

To create an array of 18 pictures, you first need to load the images into your programming environment. For example, in Python, you can use libraries like NumPy or PIL to handle the images. You can then create a list or a NumPy array and append or reshape the images into that structure, ensuring that each picture is stored in a consistent format, such as a 2D array for grayscale images or a 3D array for RGB images. Finally, you can manipulate or display the array as needed.


C plus plus array-based lists?

If you mean an array where each element is a list, then the STL is your friend. To create an array of lists of any type T, use the following declaration: std::vector<std::list<T>> my_array_of_lists;


How do you create programs using visual basic?

The following code declares a list (or array) of TEN numbers... Dim List(10) As Short Now, lets say you wanted to enter 25 as the fifth number in the list... List(5) = 25 What about a list of strings (text)? Replace Short with String!


32 can you create a linked list with out structure pointer?

Not in C, no.


Can you simulate linked list using arrays?

I would say no, but it really depends on your point of view. An array and a linked list can both hold the same data; the only difference is how they do so. The definition of a linked list is a sequence of connected nodes. An array is a contiguous block of memory, so you can think of an array as a linked list in which each element is spacially connected to the next.


Is there a way to create variables as needed in C based on user input?

Yes. You can store any number of values input at runtime using a variable-length array or any other sequence container such as a list.