/*******************************
M2120-Fall'05-Lab 2- Friday
Author: Sergey Sadov
Date: Fri Sept.16 2005
Playing numbers in C
********************************/
int main()
{
int c;
c=(1+2*3)-6/3*4;
printf("the result of (1+2*3-6/3*4)=%d\n",c);
return(0);
}
Remarks