1

What is the difference between the 4th and 5th lines?

int main() 
{
    int a = 3, b = 5, c, d; 
    c = a, b; 
    d = (a, b); 
    printf("c=%d d=%d", c, d); 
    return 0;
}

Output:

c=3 d=5
John Kugelman
  • 349,597
  • 67
  • 533
  • 578
Gopinath
  • 214
  • 2
  • 5

0 Answers0