Sr Software Engineer Interview Questions

67,436 sr software engineer interview questions shared by candidates

print the middle of linked list struct Node { int data; struct Node* next; }; /* Function to get the middle of the linked list*/ void printMiddle(struct Node *head) { struct Node *slow_ptr = head; struct Node *fast_ptr = head; if (head!=NULL) { while (fast_ptr != NULL && fast_ptr->next != NULL) { fast_ptr = fast_ptr->next->next; slow_ptr = slow_ptr->next; } printf("The middle element is [%d]\n\n", slow_ptr->data); }
avatar

Senior Software Engineer

Interviewed at Cisco

4.1
Mar 4, 2019

print the middle of linked list struct Node { int data; struct Node* next; }; /* Function to get the middle of the linked list*/ void printMiddle(struct Node *head) { struct Node *slow_ptr = head; struct Node *fast_ptr = head; if (head!=NULL) { while (fast_ptr != NULL && fast_ptr->next != NULL) { fast_ptr = fast_ptr->next->next; slow_ptr = slow_ptr->next; } printf("The middle element is [%d]\n\n", slow_ptr->data); }

Viewing 2451 - 2460 interview questions

Glassdoor has 67,436 interview questions and reports from Sr software engineer interviews. Prepare for your interview. Get hired. Love your job.