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
Explain about block scope in c?
What are header files why are they important?
How can type-insensitive macros be created?
What is scope of variable in c?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
What are global variables and how do you declare them?
Can we use visual studio for c?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
Linked lists -- can you tell me how to check whether a linked list is circular?
Why static variable is used in c?
Explain the use of 'auto' keyword
Explain what standard functions are available to manipulate strings?
Explain what are multibyte characters?
Why do we need volatile in c?
What will be the outcome of the following conditional statement if the value of variable s is 10?