what is the purpose of the code, and is there any problem
with the code?
int f( int n, int l, int r )
{ return (n << l) >> r; }
Answers were Sorted based on User's Feedback
Answer / guest
first it will call to n and then it will move on l or r, if
it is less then or equal to is there so it will return the
value ..... or else it will print the output
| Is This Answer Correct ? | 0 Yes | 2 No |
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
SRUCTURE PROGRAMMING
Without Computer networks, Computers will be half the use. Comment.
I have seen function declarations that look like this
Prove or disprove P!=NP.
How can I find out if there are characters available for reading?
What does nil mean in c?
What is scanf () in c?
How do I convert a string to all upper or lower case?
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
Explain how can I open a file so that other programs can update it at the same time?