[ create a new paste ] login | about

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

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

    if (height = 3)
    {
        printf("The new height is %d", height);

    return 0;
    }
}


Output:
1
The new height is 3


Create a new paste based on this one


Comments: