Hi guys, i'm trying to do my homework that my teacher gave us and I'm getting an error that I don't know how to solve this. with u guys help I would be so grateful
#include <iostream>
#include "concurso.h"
int main()
{
int participantes, quantidadeQuestoes, i, j;
std::cout << "Qual o numero de participantes? ";
std::cin >> participantes;
std::cout << "Qual o numero de questoes? ";
std::cin >> quantidadeQuestoes;
linha(10, '-');
questoes * pt = new questoes[quantidadeQuestoes];
for (i = 1; i <= participantes; i++)
{
std::cout << "Participante " << i;
for (j = 1; j <= quantidadeQuestoes; j++)
{
}
}
system("pause");
};