[ create a new paste ] login | about

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

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

    if (height == 5 && breath == 10 && printf("1234") == 4);
    {
        printf(" All action completed");
    }
    
    return 0;

}


Output:
1
1234 All action completed


Create a new paste based on this one


Comments: