The = symbol represents the assignment operator. It is used to assign a value to a variable.
=
so your statement "
int i = 0;
"
the value 0 is assigned to i. That's how i get initialised.
i