any string of bits of length 'n' represents a unique non-
negative integer between.............?
Answer Posted / ravi joshi
Between 0 and 2^n-1
| Is This Answer Correct ? | 16 Yes | 0 No |
Post New Answer View All Answers
What is adt in c programming?
Can you subtract pointers from each other? Why would you?
What is the difference between a string and an array?
What are linked lists in c?
What is c standard library?
What is nested structure?
What is "Hungarian Notation"?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
Give me the code of in-order recursive and non-recursive.
What is the purpose of void in c?
What is storage class?
What is the difference between array and linked list in c?
How can I direct output to the printer?
Is c weakly typed?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array