[ create a new paste ] login | about

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

C, pasted on Sep 17:
1
2
3
4
5
6
7
#include <stdio.h>

int main()
{
    int x = 1, y = 123124124, z = 24;
    printf("%-3d%-12d%d\n", x, y, z);
}


Output:
1
2
3
1  123124124   24

Exited: ExitFailure 18


Create a new paste based on this one


Comments: