Predict the output of the following code
#includestdio.h
void main()
{
char a = 'a', b = 'b';
char c=a++;
{
c = c--;
printf("%c ", c);
}
printf("%c", c);
}


Posted on by