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 |
What is the code for following o/p * * * * * * * * * * * * * * * *
void main() { int i=5,y=3,z=2,ans; clrscr(); printf("%d",++i + --z + i++ + --i * ++y); i=5,y=3,z=2; ans=++i + --z + i++ + --i * ++y; printf("\n%d",ans); getch(); } Its output is 37 and 31.... Please explain me why its different How it works.....
how tally is useful?
what is run time error?
what is exceptions?
what is meant for variable not found?
Display this kind of output on screen. 1 0 1 1 0 1 3. Display this kind of output on screen. 1 1 0 1 0 1 4. Display this kind of output on screen. 1 1 0 1 0 1 5.Display this kind of output on screen. 1 2 3 4 5 6 7 8 9 10
quoroum of computer languages?
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
what is the error in the following code: main() { int i=400,j; j=(i*i)/i; }
main() { char c; for(c='A';c<='Z';c++) getch(); }
when i use cout or cin call & then either << or >> .....it shows declaration syntax error...what should i do? cout<<"anything"; int a; cin>>a; return 0;