google407ec42f1ae5ff0e.html
top of page
Writer's pictureYatendra Awana

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