Hi,
I am new to C Program
What is the out put of this program ?
When I executed the output is 2 for c and 6 for d.
Can u tell me reason why it's so.
#include<stdio.h>
void main()
{
int a = 2, b = 6, c, d;
c = a,b;
d = (a,b);
printf("|n The value of c is: %d", c);
printf("|n The value...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.