A simple code in c Language:
void main()
{
int a=10;
printf("%d%d%d",a,++a,a++);
getch();
}
output is: 12,12,10
void main()
{
int i;
i=1;
for(i++; i++<=2; i++)
for(i++; i++<=6; i++);
printf("value of I=%d",i++);
getch();
}
output is: 11
Today, there have been 3147 visitors (5962 hits) on this page!
This website was created for free with
Own-Free-Website.com
. Would you also like to have your own website?
Sign up for free