922 views

1 Answer

Related questions

2 votes
2 votes
2 answers
1
Sanyam Lakhanpal asked Jul 18, 2017
4,134 views
Please tell the output ! With explanation..#include<stdio.h>int main(){ printf("%d", 2<<2>>2); printf("\n%d", 2>>2<<2<<(1<<1)); return 0;}
1 votes
1 votes
0 answers
3
VS asked Jan 13, 2018
668 views
a) Shifting a Unsigned integer right by one bit, and filling from the left with 0, is always equivalent to dividing by 2. (True/False)b) Shifting a Unsigned integer left ...
0 votes
0 votes
2 answers
4
Purple asked Jan 23, 2016
864 views
Consider the C function func shown below: int func(int num) { int count = 0; while (num) { count++; num>>= 1; } return (count); }The value returned by func(0235) is _____...