Advertisement
ProToTN

Untitled

Dec 30th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.31 KB | None | 0 0
  1. void trouverLocal ( local Mall [][], int *indC, int *indL, int typeActivite)
  2. {
  3.  
  4.     for(l=0;l<4;l++)
  5.     {
  6.         for(c=0;c<6;c++)
  7.         {
  8.  
  9.             if ((Mall[l][c].type==typeActivte) && (etat==0))
  10.             {
  11.                 *indL=l;
  12.                 *indC=c;
  13.             }
  14.         }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement