Comma as an operator in C
To separate two or more expressions we use the comma operator in C. Where expression1 is evaluated first, and after that expression2, and the value of expression2 is returned for the entire expression.
#include <stdio.h>
int main() {
int y;
...
kaustubhk.hashnode.dev1 min read