[ create a new paste ] login | about

Link: http://codepad.org/LfT4koM1    [ raw code | output | fork ]

C, pasted on Aug 18:
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>

int main(void)
{
  unsigned int u = 1;
  int i = -1;

  if(u < i)
    printf("1 < -1");

  return 0;
}


Output:
1
1 < -1


Create a new paste based on this one


Comments: