what is the difference between arrays and linked list
Answer Posted / deenadhayalan.t
array is nothing but collection of similar data type.
list is a collection of different data type..
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What tq means in chat?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
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 maximum length of an identifier?
Differentiate between a structure and a union.
What does typeof return in c?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
Write a program to reverse a linked list in c.
What is an lvalue in c?
What is static and volatile in c?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
Differentiate abs() function from fabs() function.
What is graph in c?
What is the use of bit field?
What is queue in c?