I suggest you use a std::vector, since you have a number of teams.
#include <iostream>
#include <vector>
#include <string>
#include <fstream>
using namespace std;
class Team
{
    public:
    string name;
    string dificulty;
    string section;
};
void GetTeamInfo(vector<Team>& ko_v);
int main()
{
    vector<Team> ko; // a vector of Teams
    GetTeamInfo(ko); // read from file inside a vector
    // print every team
    for(unsigned int i = 0; i < ko.size(); ++i) {
      cout << ko[i].name << " ";
      cout << ko[i].dificulty<< " ";
      cout << ko[i].section<< " ";
      cout << "\n";
    }
    //system("PAUSE"); // don't use system()
    return 0; // return 0 should be placed at the end of main
}
void GetTeamInfo(vector<Team>& ko_v) // you had an extra parameter here, no need to
{
    ifstream fd;
    fd.open("Team.txt");
    if (fd.is_open()) // check if file is open
    {
        while (!fd.eof()) // while you have more to read
        {
            Team ko;            // create a Team
            fd >> ko.name;      // read data
            fd >> ko.dificulty;
            fd >> ko.section;
            ko_v.push_back(ko); // store that Team in the vector of teams
        }
    }
    else
    {
      cout << "File not opened!\n";
    }
}
Why not to use an array? You could use an array of course, but since this is C++, std::vector's usage is encouraged. Moreover, you don't have to worry about the number of the Teams you are going to read from the file. If you would have used an array, you should know apriori the number of the Teams, or dynamically allocate memory.
Why not use system(pause); ?
Just for a glance, I am modifying the example with the use of an array.
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
class Team
{
    public:
    string name;
    string dificulty;
    string section;
};
void GetTeamInfo(Team* ko_ar, const int N);
int main()
{
    const int N = 3; // number of teams in the file
    Team ko[N]; // a vector of Teams
    GetTeamInfo(ko, N); // read from file inside a vector
    // print every team
    for(int i = 0; i < N; ++i) {
      cout << ko[i].name << " ";
      cout << ko[i].dificulty<< " ";
      cout << ko[i].section<< " ";
      cout << "\n";
    }
    //system("PAUSE"); // don't use system()
    return 0; // return 0 should be placed at the end of main
}
void GetTeamInfo(Team* ko_ar, const int N)
{
    ifstream fd;
    fd.open("Team.txt");
    int i = 0;
    if (fd.is_open()) // check if file is open
    {
        while (!fd.eof()) // while you have more to read
        {
            Team ko;            // create a Team
            fd >> ko.name;      // read data
            fd >> ko.dificulty;
            fd >> ko.section;
            if(i == N) {
              cout << "Read more than " << N << " teams\n";
              break;
            }
            ko_ar[i++] = ko; // store that Team in the vector of teams
        }
    }
    else
    {
      cout << "File not opened!\n";
    }
    cout << "Read " << i << " teams\n";
}