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 do structure language means?
How to write a multi-statement macro?
How do you convert strings to numbers in C?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
what is constant pointer?
What does typedef struct mean?
implement NAND gate logic in C code without using any bitwise operatior.
What is the deal on sprintf_s return value?
What is meant by recursion?
how can we Declare a variable in c without defining it.