Guest User

Untitled

a guest
Oct 20th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. /* Filling in a 16x16 grid. */
  2. int a[16][16];
  3. int i;
  4. int u;
  5. for(i = 0;i < 16;i++)
  6. {
  7. for(u = 0;u < 16;u++)
  8. {
  9. a[i][u] = '.';
  10. }
  11. }
Add Comment
Please, Sign In to add comment