#include <stdio.h>
int main(void)
{
int a, b, c, d;
a = 3;
b = 5;
c = a, b;
d = (a, b);
printf("c=%d ", c);
printf("d=%d\n", d);
return 0;
}
For all C lovers and geeks
Designed by WPart.org, Blogger templates by Blog and Web.
c=3
d=5
how??
Will u Please Explain