Having trouble storing strings into an array. I tried a multi-dimensional char array but it didn't work. I would ideally like a multi-dimensional string array but every time I try I get the error
cannot convert std::string (*)[100] {aka std::basic_string<char> (*)[100]} to std::string*
Don't even understand what that means. I tried printing the array in my function input_new_student which is where I store the string just to test it, and no luck. The same thing is happening to all my arrays. I've looked it up but I feel like im overlooking something very simple, please help.
#include <iostream>
#include <iomanip>
#include <string>
#include <cstdlib>
#include <ctime>
void print_menu();
int get_selection();
std::string get_Name();
float get_GPA();
int get_Year();
void input_new_student(std::string student_names[], float student_GPA[], int student_start_year[], int index, int ramapo_id[]);
void print_all(std::string student_names[], float student_GPA[], int student_start_year[], int index, int size, int ramapo_id[]);
void print_by_year(std::string student_names[], float student_GPA[], int student_start_year[], int index, int size);
void print_statistics(std::string student_names[], float student_GPA[], int student_start_year[], int index, int size, float sum);
using namespace std;
int main()
{
    std::string student_names[100];
    float student_GPA[100];
    int student_start_year[100];
    int ramapo_id[100];
    int userChoice;
    int index = 0;
    int size = 0;
    float sum = 0.0;
    do
    {
        print_menu();
        userChoice = get_selection();
        if (userChoice == 1)
        {
            input_new_student(student_names, student_GPA, student_start_year, index, ramapo_id);
            index++;
        }
        if (userChoice == 2)
        {
            print_all(student_names, student_GPA, student_start_year, index, size, ramapo_id);
        }
        if (userChoice == 3)
        {
            print_by_year(student_names, student_GPA, student_start_year, index, size);
        }
        if (userChoice == 4)
        {
            print_statistics(student_names, student_GPA, student_start_year, index, size, sum);
        }
        if (userChoice == 5)
        {
            return 0;
        }
    } while(userChoice > 0 && userChoice < 4);
    return 0;
}
void print_menu()
{
    cout << "Please pick from the following menu " << endl;
    cout << "1. Add a new student " << endl;
    cout << "2. Print all students " << endl;
    cout << "3. Print students by year " << endl;
    cout << "4. Print student statistics " << endl;
    cout << "5. Quit" << endl;
}
int get_selection()
{
    int userChoice;
    cin >> userChoice;
    while (userChoice > 4 || userChoice < 1)
    {
        cout << "Error: Invalid input, please try again: ";
        cin >> userChoice;
    }
    return userChoice;
}
string get_Name()
{
    std::string student_name;
    cout << "Please enter the student's name: ";
    cin >> student_name;
    return student_name;
}
float get_GPA()
{
    float student_GPA;
    cout << "Please enter the GPA: ";
    cin >> student_GPA;
    return student_GPA;
}
int get_Year()
{
    int student_year;
    cout << "Please enter the start Year: ";
    cin >> student_year;
    return student_year;
}
void input_new_student(std::string student_names[], float student_GPA[], int student_start_year[], int index, int ramapo_id[])
{
    //information generation
    srand((unsigned)time(0));
  int random_integer = rand();
    ramapo_id[index] = random_integer;
    //information acquisition
    student_names[index] = get_Name();
    student_GPA[index] = get_GPA();
    student_start_year[index] = get_Year();
}
void print_all(std::string student_names[], float student_GPA[], int student_start_year[], int index, int size, int ramapo_id[])
{
    for (int i = 0; i < size; i++) {
    cout << student_names[i] << " - " << ramapo_id[i] << endl;
    }
}
void print_by_year(std::string student_names[], float student_GPA[], int student_start_year[], int index, int size)
{
    int student_year_identifier;
    cout << "Which year would you like to display?: ";
    cin >> student_year_identifier;
    for (int i = 0; i < size; i++)
    {
        if (student_year_identifier == student_start_year[i])
        {
            cout << "There were " << index << "students in that year" << endl;
        }
        else {
            cout << "There were no students in that year" << endl;
        }
    }
}
void print_statistics(std::string student_names[], float student_GPA[], int student_start_year[], int index, int size, float sum)
{
    cout << "Total: " << index << endl;
    float avg = 0.0;
  for (int i = 0; i < size; ++i)
  {
      sum += student_GPA[i];
  }
  avg = ((float)sum)/size;
    cout << "GPA: " << avg << endl;
}
 
     
     
    