Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
test.mcc 165 B
int main() {
    int a;
    int b;
    int max;

    a = (1 + 1);
    b = 5;

    if (a < b) {
        max = b;
    } else {
        max = a;
    }

    return 0;
}