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 |
How pointer is benefit for design a data structure algorithm?
Give me the code of in-order recursive and non-recursive.
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
how should functions be apportioned among source files?
parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
Write a program to check prime number in c programming?
What is register variable in c language?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What's the difference between DELETE TABLE and TRUNCATE TABLE commands?
How do you define a string?
Explain what is the difference between the expression '++a' and 'a++'?