hi, according to the editorial this piece of code is given:-
while (carry)
{
res[res_size] = carry%10;
carry = carry/10;
res_size++;
}
so, i want to ask if carry is 0 initially then, this loop’s body will never execute so how we, will increase the res_size.