Write a program to reverse a linked list in c.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

how to find the given number is prime or not?

6 Answers   IMS, ING,


List some of the static data structures in C?

0 Answers  


difference between semaphores and mutex?

1 Answers  


declare afunction pointer to int printf(char *)?

1 Answers   HCL,


C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions

0 Answers  


What's the best way of making my program efficient?

0 Answers   Celstream,


char ch="{'H','I',0};printf("%s",ch);what is output

9 Answers   Accenture,


What is void c?

0 Answers  


What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }

1 Answers  


write a programme to convert temperature from farenheit to celcius?

4 Answers   IBM,


Explain what are multidimensional arrays?

0 Answers  


int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

10 Answers   Wipro,


Categories