Subversion Repositories Kolibri OS

Rev

Rev 9013 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #include <assert.h>
  2. #include <stdio.h>
  3. int a = 431;
  4. int b = 532;
  5.  
  6. int main()
  7. {
  8.     assert(a != b);
  9.     assert(a == b);
  10. }