google407ec42f1ae5ff0e.html Program to understand the use of comma operator in c programming languge
top of page

Program to understand the use of comma operator in c programming languge


#include<stdio.h>

void main()

{

int a,b,c,sum;

sum = (a=8,b=7,c=9,a+b+c);

printf("Sum=%d\n",sum);

getch();

}

5 views0 comments

Recent Posts

See All
bottom of page