[ create a new paste ] login | about

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

appunti2 - C, pasted on May 1:
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
int main (void)
{
    int a = 5;
    signed char b = -4;
    int c = a > b;
    printf ("(%d > %d) produce %d\n", a, b, c);
    getchar ();
    return 0;
}


Output:
1
(5 > -4) produce 1


Create a new paste based on this one


Comments: