home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 40 / IOPROG_40.ISO / SOFT / NETFrameworkSDK.exe / comsdk.cab / samples1.exe / MyC / Tests / t06.myc < prev    next >
Encoding:
Text File  |  2000-06-23  |  153 b   |  21 lines

  1.  
  2. static int a;
  3.  
  4. void main()
  5. {
  6.   int b;
  7.   int c;
  8.  
  9.   a = 1;
  10.   b = 2;
  11.  
  12.   c = (a+b)*2;
  13.  
  14.   if (a < c && c > a)
  15.     {
  16.     b = 4;
  17.     }
  18. }
  19.  
  20.  
  21.