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 |
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
Explain what are run-time errors?
What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
Explain data types & how many data types supported by c?
which is faster execution: loops or recursion?
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What is maximum size of array in c?
write a c program to store and print name,address,roll.no of a student using structures?