I was learning about structures in C++. I had a question:
1.struct integer
2.{
3. int i;
4. integer (int j = 0) : i (j) {};
5. integer operator* (const integer &k) const
6. {
7. return integer (i + k.i);
8. }
9.};
In the above code, i was not able to understand the :i(j) in line 4 and const which is at the end of line 5. What does these mean?