[ create a new paste ] login | about

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

C, pasted on Feb 10:
1
2
3
4
5
6
7
#include <stdio.h>
int main(int argc, char *argv[])
{
   int i=8;
   printf("%d,%d,%d,%d\n",i--, --i, i++, i++);
   return 0;
}


Output:
1
9,8,9,8


Create a new paste based on this one


Comments: