[ create a new paste ] login | about

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

C, pasted on Apr 4:
1
2
3
4
5
#include<stdio.h>
void main()
{
    printf("%i and %i and %i and %i", 4+2, 4-2, 4*2, 4/2);
}


Output:
1
6 and 2 and 8 and 2


Create a new paste based on this one


Comments: