Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 198 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 198 Bytes

3.26

A. jmp

B.

long fun_a(unsigned long x) {
    long val = 0;
    while(x) {
        val = x ^ val;
        x = x >> 1;
    }
    return val & 1;
}

C. Even or odd number fo one.