fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. for (short a = 32765; a >= 0; a++)
  6. printf("%hd %d\n", a, a >= 0);
  7.  
  8. return 0;
  9. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
32765 1
32766 1
32767 1