a<<1 is equivalent to
a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the
above
Answer Posted / sindhu
multiplying by 2
a*2^1
| Is This Answer Correct ? | 38 Yes | 10 No |
Post New Answer View All Answers
How do I use void main?
what will be the output for the following main() { printf("hi" "hello"); }
Write the syntax and purpose of a switch statement in C.
Explain how can I read and write comma-delimited text?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is a loop?
Here is a neat trick for checking whether two strings are equal
Are negative numbers true in c?
What are header files? What are their uses?
What are all different types of pointers in c?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
how is the examination pattern?
How do I create a directory? How do I remove a directory (and its contents)?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays