Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 2nd, 2012  |  syntax: C  |  size: 0.19 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1.     struct No{
  2.         int dado;
  3.         struct No* proximo;
  4.     };
  5.      
  6.     struct Lista {
  7.         struct No* primeiro;
  8.         struct No* ultimo;
  9.         int num_elementos;
  10.     };