expr.cminus 154 Bytes
Newer Older
lyz's avatar
lyz committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*Basic num part*/
int main(void){
    a = 0;

    x = 0.0;
    x = 1.;
    x = .1;

    a = 1+1;
    a = a-1;

    x = x*1;
    x = a/x;

    return 0;
}