11. WRITE A C PROGRAM FOR SPECIAL OPERATORS / COMMA OPERATORS July 13, 2017 Get link Facebook X Pinterest Email Other Apps /*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
Comments
Post a Comment