a<<1 is equivalent to
a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the
above
Answers were Sorted based on User's Feedback
Answer / dev
left shift by 1 so the ans would be none of this..... it is
complementing
| Is This Answer Correct ? | 8 Yes | 15 No |
What is operator precedence?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
What is equivalent to ++i+++j?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
How do we make a global variable accessible across files? Explain the extern keyword?
What is the return type of sizeof?
how to convert binary to decimal and decimal to binary in C lanaguage
7 Answers BPO, Far East Promotions, IBM, RBS,
In C language, a variable name cannot contain?
Why do we write return 0 in c?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
How are structure passing and returning implemented?