Array help in C++
- by user267237
I am writing a program that is declaring an array of 100 integer numbers
and filling the array with random numbers using rand().
All I have so far is:
#include <iostream>
using namespace std;
int main()
{
int random_integer = rand();