what is the output of this program.
#includestdio.h
int main()
{
int a=3,b,c;
b=2*(a++);
c=2*(++a);
printf("%d%d",b,c);
return 0;
}







Posted on by