How to reverse a linked list without using array & -1?
Thank you.
Answers were Sorted based on User's Feedback
Answer / naveengoud31@yahoo.com
IS it possible by sorted list???.
| Is This Answer Correct ? | 1 Yes | 1 No |
I'm having trouble with coming up with the correct code. Do I need to put a loop? Please let me know if I'm on the right track and what areas I need to correct. I still don't have a good grasp on this programming stuff. Thanks =) The assignment was to write a program using string functions that accepts a coded value of an item and displays its equivalent tag price. The base of the keys: 0 1 2 3 4 5 6 7 8 9 X C O M P U T E R S Sample I/O Dialogue: Enter coded value: TR.XX Tag Price : 68.00
#include<stdio.h> void main() { int i=1; printf("%d%d%d",i++,++i,i); }
what is the error in the following code: main() { int i=400,j; j=(i*i)/i; }
void main() { int i=1; printf("%d%d%d",i,++i,i++); } Cau u say the output....?
void main() { int i=5; printf("%d",i+++++i); }
write a profram for selection sort whats the error in it?
UINT i,j; i = j = 0; i = ( i++ > ++j ) ? i++ : i--; explain pls....
how to convert decimal to hexadecimal without using arrays just loops
what is meant by linking error? how can i solve it? if there is a linking error " unable to open file 'cos.obj'? then what should i do?
#include<>stdio.h> #include<>conio.h> { printf("hello"); void main() getch(); } what the out put of this program and why ......plz clear my answer
How to convert hexadecimal to binary using c language..
1 Answers Bajaj, GAIL, Satyam, Zenqa,
what are the techniques for reducing the fragility of a memory bug?