Yatendra AwanaJul 21, 20211 min readProgram 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();}
#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();}
Program to find biggest number from three given numbersProgram to find biggest number from three given numbers
댓글