Guest User

Untitled

a guest
Apr 26th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. for (x = 0, y = 0 ; y < size_y ; y++)
  2. for (x = 0; x < size_x ; x++)
  3. {
  4. printf("%d : %d", y, x);
  5. if (tab[y][x] == '.')
  6. {
  7. while (calc_carre(tab, x, y, size_carre) == 1)
  8. size_carre++;
  9. my_printf("%d\n", size_carre);
  10. }
  11. }
Add Comment
Please, Sign In to add comment