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 |
What type is sizeof?
What is the difference between constant pointer and constant variable?
Explain how do you determine a file’s attributes?
what is the maximum no. of bytes calloc can allocate
Is there a built-in function in C that can be used for sorting data?
What is the size of empty structure in c?
What are runtime error?
What is the difference between exit() and _exit() function in c?
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.
explain what is fifo?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.