[ create a new paste ] login | about

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

C, pasted on Apr 5:
1
2
3
4
5
6
7
#include<stdio.h>
void main()
{
    int a=5;
    if (a>4)
        printf("a is greater than 4");
}


Output:
1
a is greater than 4


Create a new paste based on this one


Comments: