Subversion Repositories Kolibri OS

Rev

Go to most recent revision | 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.     assert(a!=b);
  8.     assert(a==b);
  9. }