Which of the following data structures is on average the
fastest for retrieving data:
1) Binary Tree
2) Hash Table
3) Stack
Post New Answer View All Answers
Multiply an Integer Number by 2 Without Using Multiplication Operator
Explain why can’t constant values be used to define an array’s initial size?
What is the most efficient way to store flag values?
What is class and object in c?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What is the use of extern in c?
Are enumerations really portable?
Why cant I open a file by its explicit path?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What are the ways to a null pointer can use in c programming language?
What is the Purpose of 'extern' keyword in a function declaration?
How many parameters should a function have?
What does a pointer variable always consist of?
Can the sizeof operator be used to tell the size of an array passed to a function?