What will be the output of following code?

int main() 
       int a, b = 10; 
       a = -b--; 
        printf("a = %d, b = %d", a, b); 

    return 0; 



Posted on by