#include<stdio.h>
void main()
{
int num=22;
printf("%d %d %d", num,++num,++num);
}
The output of the above program is 24 24 24. Can someone explain?
#include<stdio.h>
void main()
{
int num=22;
printf("%d %d %d", num,++num,++num);
}
The output of the above program is 24 24 24. Can someone explain?