[ create a new paste ] login | about

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

godneil - C, pasted on Aug 25:
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 holding_variable = 0;

    holding_variable = (3 && 4);

    printf("holding variable is %d", holding_variable);

    return 0;
    

}


Output:
1
holding variable is 1


Create a new paste based on this one


Comments: