Posts by jjefferrson • 21 points
1 post
-
2
votes1
answer1505
viewsQ: How do I get this list double-chained and circulated?
#include <stdio.h> #include <stdlib.h> #include <string.h> struct Tipo_Lista{ char cod[50] ; struct Tipo_Lista *Prox; struct Tipo_Lista *Ant; }; struct Tipo_Lista *Primeiro; struct…