Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. #include "polinomio.h"
  4.  
  5. typedef struct Nodo *PNodo;
  6.  
  7. typedef struct Nodo *Polinomio;
  8.  
  9. typedef struct Nodo{
  10. int coeficiente;
  11. int exponente;
  12. PNodo siguiente;
  13. } Nodo;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement