what is the use of using linked list and array?
Answer Posted / kunal
because they decrease the time complexity of the program we
have to do.
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Explain how can a program be made to print the line number where an error occurs?
Explain what is the purpose of "extern" keyword in a function declaration?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What is the difference between array and pointer?
What is the difference between fread buffer() and fwrite buffer()?
Explain a file operation in C with an example.
What is a #include preprocessor?
How do you use a 'Local Block'?
Explain the bubble sort algorithm.
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); } }
In C programming, what command or code can be used to determine if a number of odd or even?
Is c weakly typed?
What is conio h in c?
By using C language input a date into it and if it is right?
Describe how arrays can be passed to a user defined function