what is the difference between arrays and linked list
Answer Posted / prabhjot singh
array is easy to understand bt linked list -very difficult .
| Is This Answer Correct ? | 15 Yes | 15 No |
Post New Answer View All Answers
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
Is it possible to pass an entire structure to functions?
What is static and auto variables in c?
Where we use clrscr in c?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
Why #include is used in c language?
How do I use void main?
How do you write a program which produces its own source code as output?
Place the #include statement must be written in the program?
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
What is the difference between near, far and huge pointers?
Why is it that not all header files are declared in every C program?
What are the different types of control structures in programming?
Is it acceptable to declare/define a variable in a c header?
Explain what is wrong with this program statement? Void = 10;