Answer Posted / prakashdasari
node *ptr1,*ptr2,*ptr3;
ptr1=start;
ptr2=ptr1->next;
ptr3=ptr2->next;
ptr1->next=NULL;
ptr2->next=ptr1;
while(ptr3!=NULL)
{
ptr1=ptr2;
ptr2=ptr3;
ptr3=ptr3->next;
ptr2->next=ptr1;
}
start = ptr2;
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is a method in c?
What is a nested loop?
What is the hardest programming language?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
How #define works?
how many key words availabel in c a) 28 b) 31 c) 32
What is d'n in c?
c program to compute AREA under integral
What is volatile variable how do you declare it?
Tell me about low level programming languages.
What is getch () for?
Are the variables argc and argv are local to main?
What do you mean by a sequential access file?
write a program to print data of 5 five students with structures?