int main()
{
string text;
srand(time(NULL)); //рандом
rand();
int n = 10000; //0-1000
int randomQuestion = rand() % (n + 1);
ifstream file("1.txt");//путь к файлу
char open_file[400];
int index = -1;
do
{
index++;
if (index == randomQuestion) text = open_file; //Проверка номера строки
file.getline(open_file, 400);//считывает одну строку файла
} while (!file.eof());
cout << open_file;
}