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 |
difference between c/c++ programing language? what is necessesity of c++ when existing c programing language?
Write down the difference between c. Loop and goto statement d. (!0) and (!1) e. (1= =! 1) and (1!=1) f. NULL and !NULL
#include"stdio.h" #include"conio.h" void main() { int a; printf("\n enter a number:"); scanf("%c\n"); getch(); }
How to reverse a linked list without using array & -1? Thank you.
what is the large sustained error signal that eventually cause the controller output to drive to its limit
wap for bubble sort
loop1: { x=i<n?(i++):0; printf("%d",i); exit(x); continue; } Error- misplaced continue. Doubt-1.will the exit(x) be executed for all values of x 2.will this statement go out of the program.
Find the error (2.5*2=5) (a) X=y=z=0.5,2.0-5.75 (b) s=15;
quoroum of computer languages?
UINT i,j; i = j = 0; i = ( i++ > ++j ) ? i++ : i--; explain pls....
Declaration of Cube Guys please help me.. Is this a right way to declare cube.? If i Compile it. It Says: Cube undeclared what should i do? Please help \thanks in advanced #include<stdio.h> #include<math.h> #include<conio.h> main( ) { float x,y; while(x++<10.0) { printf("Enter Number:"); scanf("%d", &x); y = cube(x); printf("%f %f %f \n", x,pow(x,2),y); cube(x); } { float x; float y; y = x*x*x; } getch(); return (y); }
void main() { int i=1; printf("%d%d%d",i,++i,i++); } Cau u say the output....?