Output is 7.
But can someone justify, how?
#include <stdio.h> int f(int a, int b) { printf("%d", a + b); return 0; } int main() { f((2, 3), 4); return 0; }
https://www.geeksforgeeks.org/a-comma-operator-question/
@kd.....Thanks!