Advertisement
Miinsk

LAB-25-05

May 25th, 2015
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.12 KB | None | 0 0
  1. #include <conio.h>
  2. #include <stdio.h>
  3. #include <malloc.h>
  4.  
  5. struct nodo
  6. {
  7.    int valor;
  8.    struct nodo *prox;
  9.  };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement