so in my last post i have share one example of unary operators.
so lets check it out on new example in unary operators.
so I told you in my last post that i am not focusing on syntax.
void main()
{
int a=2,b;
b=a++;
printf(“%d”,a);
printf(“%d”,b);
}
output:
2
2
hopeĀ you will like it thank you.