I'm working on this code that takes a numeric string and fills an array with each "digit" of the string. The issue I'm having is trying to convert an integer to a string. I tried using to_string to no avail.
Here is the code (note this is pulled from a larger program with other functions):
#include <cstdlib>
#include <stdlib.h>
#include <iostream>
#include <time.h> 
#include <typeinfo>
    int fillarr(int &length) {
        int arr[length];
        string test = "10010"; //test is an example of a numeric string
        int x = 25 + ( std::rand() % ( 10000 - 100 + 1 ) );
        std::string xstr = std::to_string(x); //unable to resolve identifier to_string
        cout << xstr << endl;
        cout << typeid (xstr).name() << endl; //just used to verify type change
        length = test.length(); //using var test to play with the function
        int size = (int) length;
        for (unsigned int i = 0; i < test.size(); i++) {
            char c = test[i];
            cout << c << endl;
            arr[int(i)] = atoi(&c);
        }
        return *arr;
    }
How can I convert int x to a string? I have this error: unable to resolve identifier to_string.
 
    