How many types of linked lists what are they?
How many types of data structures?
Answer Posted / saranya
singly link list
doubly link list
circular link list
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are header files in c programming?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
How do I swap bytes?
What will the preprocessor do for a program?
What is %g in c?
What is const and volatile in c?
What are the complete rules for header file searching?
The difference between printf and fprintf is ?
What are the standard predefined macros?
to find the closest pair
Why c is called top down?
What's the difference between constant char *p and char * constant p?
Difference between strcpy() and memcpy() function?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].