Answer Posted / bhupende r singh
The bitwise shift operators move the bit values of a binary
object.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain why C language is procedural?
What is zero based addressing?
When can you use a pointer with a function?
Write a program to swap two numbers without using third variable in c?
What is the difference between array and pointer in c?
What are the complete rules for header file searching?
Explain what is the difference between null and nul?
What are the two forms of #include directive?
What is a c token and types of c tokens?
how logic is used
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is c value paradox explain?
Why can’t constant values be used to define an array’s initial size?
why do some people write if(0 == x) instead of if(x == 0)?
I heard that you have to include stdio.h before calling printf. Why?