Advertisement
Cristopher-Vidal

Untitled

May 3rd, 2015
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. void inserenalista( string i, struct lista *listvar){
  2.  
  3. listvar->ultimo->next=( struct no*)malloc (sizeof(struct no));
  4. listvar->ultimo=listvar->ultimo->next;
  5. listvar->ultimo->next=NULL;
  6. listvar->ultimo->info=i;
  7.  
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement