Hi,

I had this minor question -

What is the difference between using a , and ; to seperate expressions ?

for example-lets say i have a rectangle class and it has a constructor with 4 arguments -

Code:
IntRect(int left, int right , int bottom, int top) { l = left; r = right; b = bottom; t = top; }
What is the difference if I write it like this ->
Code:
IntRect(int left, int right , int bottom, int top) { l = left, r = right, b = bottom, t = top; }
I know a ; is used to finish an expression, but what is the internal(assembly level) difference between , and ; if there is any ?