Generation

regex explanationSun, 04 Jun 2023

void silent_search(STUDENT *p, long id) { p = p->next; while (p != NULL) { if (p->id == id) { //printf("Found: %ld %s\n", p->id, p->name); break; } p = p->next; } }

This function search for a student by the given id.

Want to kickstart your project?Use the new AI Studio to create your code