how will you write a program on linked lists using JAVA
programming???????????
Answer Posted / kaushal
use the java.util class for link lists program
Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is binary tree in c?
What is a pointer value and address in c?
Explain Function Pointer?
What is assert and when would I use it?
Is c compiled or interpreted?
What are the 5 data types?
What is the use of header files?
What is the significance of scope resolution operator?
Can we assign string to char pointer?
How can I delete a file?
What is the right type to use for boolean values in c? Is there a standard type?
Which header file is essential for using strcmp function?
What is use of null pointer in c?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
How to find a missed value, if you want to store 100 values in a 99 sized array?