11. WRITE A C PROGRAM FOR SPECIAL OPERATORS / COMMA OPERATORS

/*program to comma operator*/

#include<stdio.h>
#include<conio.h>
int main()
{
int a,b,c;
clrscr();
c=(a=6,b=3,a+b);
printf(“the value of c is %d\n”,c);
getch();
return 0;
}

output

the value of c is 9

Comments