[ create a new paste ] login | about

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

godneil - C, pasted on Aug 25:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# include <stdio.h>
int main (void)
{
    int height = 5;
    int weight = 10;

    if ((height == 5) || (weight == 10))
    {
        printf("True");
    }

return 0;    

}


Output:
1
True


Create a new paste based on this one


Comments: