Home » C Programming » Expressions

What will be the output of the program? #include<stdio.h> int main() { int i=2; int j = i + (1, 2, 3, 4, 5); printf("%d\n", j); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!