| 33 | n=n&mask; |
| 34 | } |
| 35 | int main(){ |
| 36 | //:w |
| 37 | //cin.tie(0)->sync_with_stdio(0); |
| 38 | int n; |
| 39 | cout<<"Enter the number: "<<endl; |
| 40 | cin>>n; |
| 41 | int i; |
| 42 | cout<<"enter the pos of bit: "<<endl; |
| 43 | cin>>i; |
| 44 | clearBitInRange(n,i,3); |
| 45 | cout<<n<<endl; |
| 46 | |
| 47 | return 0; |
| 48 | } |
| 49 | |
| 50 |
nothing calls this directly
no test coverage detected