Find the middle node in the linked list??
(Note:Do not use for loop, count and count/2)
Answer Posted / dhr
it also works
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
What is switch in c?
What is #define used for in c?
What does s c mean on snapchat?
When was c language developed?
Explain goto?
Explain what are header files and explain what are its uses in c programming?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
Is this program statement valid? INT = 10.50;
Explain how can I write functions that take a variable number of arguments?
How can you draw circles in C?
Explain how does free() know explain how much memory to release?
What is a struct c#?
What is #define in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }