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

Untitled

By: a guest on Jul 4th, 2012  |  syntax: None  |  size: 0.15 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. int busca_filme (int n, char nome[][33], char filme[])
  2. {
  3.         int i,j;
  4.         for (i=0;i<n;i++)
  5.                 if ( strcmp(nome[i], filme)==0 )
  6.                         return i;
  7.         return -1;
  8. }