Advertisement
trideceth12

Integral Promotion Bug

Sep 20th, 2014
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.13 KB | None | 0 0
  1. #include <stdio.h>
  2. int main(void)
  3. {
  4.     int i = -1;
  5.     size_t x = 1;
  6.     if(i < x) {
  7.         printf("You won't see this\n");
  8.     }
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement