Can someone explain what this line of code means? TIA!
indraneelpatil opened this issue · 2 comments
indraneelpatil commented
Is this equivalent to two separate lines like :
- a=min;
- b=c;
RanceJen commented
Yes, it does.
This syntax is same as
int a = 0, b = 0;
indraneelpatil commented
Okay thanks!