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
  • 330,190
  • 66
  • 504
  • 555
Gopinath
  • 59
  • 4

0 Answers0