Posts by reallybadprogrammer • 1 point
1 post
-
0
votes2
answers149
viewsA: String-populated chained list(Linked list)
The problem is relatively obvious and observable. while(P != NULL) { printf("%c", P->info); P = P->prox; Pay attention to the printf and the parameter who passes it. The structure has a value…