Nie rozumiem przyczyny wyjścia

Używam fragmentu kodu. Ale nie jestem w stanie zrozumieć kodu i wyników, które produkuje.

<code>#include <stdio.h>
int main()  
{ 
  int a, b,c, d;    
  a=3;    
  b=5;    
  c=a,b;    
  d=(a,b);      
  printf("c = %d" ,c);    
  printf("\nd = %d" ,d);    
  return 0;
}  
</code>

Rezultatem tego programu jest:

<code>c=3
d=5
</code>

Nie rozumiem, jak nadchodzi wyjście?

questionAnswers(2)

yourAnswerToTheQuestion