NBA - Boston Celtics

Sunday, 15 January 2012

checking the value of M


#include
#include
void main()
{
int m;
clrscr();
m=1;
m=m++ + --m;
m=m-- - m++;
m=m+5;
m=--m + ++m;
printf("%d",m);
getch();
}

No comments:

Post a Comment