#include <stdio.h>
int main()
{
    int a=4,b=5;
    b=a+++a--;
    a=++b+b--;
    printf("%d,%d",a,b);
    return 0;
}
Please explain the output of the above code.
#include <stdio.h>
int main()
{
    int a=4,b=5;
    b=a+++a--;
    a=++b+b--;
    printf("%d,%d",a,b);
    return 0;
}
Please explain the output of the above code.
