[ create a new paste ] login | about

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

godneil - C, pasted on Aug 24:
1
2
3
4
5
6
7
8
9
10
11
12
# include <stdio.h>
int main (void)
{
    int height = 5;
    
    if (height == 5);  
    {
        printf("height is 5");
    }
    return 0;
    
}


Output:
1
height is 5


Create a new paste based on this one


Comments: