what are bitwise shift operators?
Answers were Sorted based on User's Feedback
Answer / bhupende r singh
The bitwise shift operators move the bit values of a binary
object.
| Is This Answer Correct ? | 1 Yes | 0 No |
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
Distinguish between actual and formal arguments.
Explain following declaration int *P(void); and int (*p)(char *a);
what is an inline function?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
Why is c called c?
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
how to use showbits function?
State the difference between x3 and x[3].
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
Can a variable be both static and volatile in c?
how can f be used for both float and double arguments in printf? Are not they different types?