โช Choose the correct option.
What will be output of the following “c” code?
#include
void main()
{
int x =5;
x = (x++) + (++x) + (x) +(x--) + (--x);
printf("%d",x);
}
#include
void main()
{
int x =5;
x = (x++) + (++x) + (x) +(x--) + (--x);
printf("%d",x);
}