✪ Choose the correct option.
What will be output of the following “C” code?
#include
void main()
{
int a=10,x=20;a=a++ + 10;
x=x++ + ++a;
printf("%d,%d",a,x);
}

✪ Choose the correct option.
What will be output of the following “C” code?
#include
void main()
{
int a=10,x=20;a=a++ + 10;
x=x++ + ++a;
printf("%d,%d",a,x);
}