0

What is the output of the following C program?

#include<stdio.h>
int main()
{
 int a, b = 10;
 a = -b--;
 printf("a = %d, b = %d", a, b);
 return 0;
}

Studently Answered question October 10, 2022