create an SINGLE LINKED LISTS and reverse the data in the
lists completely
Answer Posted / praveen
Push all the elements into a stack (one by one) and then
create a new list by popping of the elements from the stack
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is malloc and calloc?
What is the Purpose of 'extern' keyword in a function declaration?
What is the difference between memcpy and memmove?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
What is the meaning of && in c?
what is recursion in C
How the c program is executed?
What are pragmas and what are they good for?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
Write a program to print fibonacci series using recursion?
What is #line used for?
What are the types of unary operators?
How can you convert integers to binary or hexadecimal?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Explain what is the benefit of using #define to declare a constant?