1
I was analyzing a code in C++ and came across the following structure:
struct ligacao {
int v_;
int w_;
int ComEXp;
ligacao(int v, int w, int ComEXp1) : v_(v), w_(w), ComEXp(ComEXp1) {} // Minha duvida seria concretamente aqui
};
What use is the 4th line of this stretch?
It was useful yes I accepted
– Romário Gabaritado