answersLogoWhite

0

int array_name [100];

User Avatar

Wiki User

15y ago

Still curious? Ask our experts.

Chat with our AI personalities

FranFran
I've made my fair share of mistakes, and if I can help you avoid a few, I'd sure like to try.
Chat with Fran
BeauBeau
You're doing better than you think!
Chat with Beau
ReneRene
Change my mind. I dare you.
Chat with Rene

Add your answer:

Earn +20 pts
Q: Declare an array of 100 integers?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is Jagged Array in C?

A Jagged array is an array of arrays. You can initialize a jagged array as − int[][] scores = new int[2][]{new int[]{92,93,94},new int[]{85,66,87,88}}; Where, scores is an array of two arrays of integers - scores[0] is an array of 3 integers and scores[1] is an array of 4 integers.


How do you declare an array in easytrieve?

your wish


How do you write a c plus plus program that randomly generates 100 integer values and store them in an array?

// generate 100 integers in the closed range [1:9] and store in an array. std::default_random_engine generator ((unsigned) time (0)); std::uniform_int_distribution<int> distribution (1,9); std::array<int, 100> a; for (size_t loop=0; loop!=100; ++loop) a[loop] = distribution (generator);


What does a 2 dimensional array do?

A two dimensional array is a one-dimensional array of one-dimensional arrays. That is, just as we can have an array of integers, we can also have an array of integer arrays. This idea can be extended such that we can have an array of two-dimensional arrays (a three-dimensional array), and so on. We typically use a two-dimensional array to represent a table of rows and columns, where each row is a one-dimensional array.


How do you declare an array of buttons in Java?

To declare an array of buttons in Java, you would use the following syntax: Button[] buttonArray = new Button[n]; where n is the number of buttons you want in the array. This creates an array of n buttons, where each element can hold a reference to a Button object.