/ Test /

Record Case Detail

Notes

This function is in beta test. Please help improve it in the issues here.

Stderr


        

Your Answer

void f(int arg1, bool arg2) {
    int a;
    int b;
    bool c;
    bool d;
    arg1 = 12;
    a++;
    b--;
    b = -12;
    arg2 = false;
    c = true;
    d = true;
}

JOJ Answer

void f(int arg1, bool arg2) {
    int a;
    int b;
    bool c;
    bool d;
    arg1 = 12;
    a++;
    b--;
    b = -12;
    arg2 = false;
    c = true;
    d = true;
}