Advertisement
Guest User

Untitled

a guest
Feb 17th, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3.  
  4. int main()
  5. {
  6. char matrix[4][3]=
  7. { {'1','2','3'} , {'4','5','6'} , {'7','8','9'} , {'a','b','c'}};
  8. int i, j;
  9.  
  10. for(i = 0; i < 4; ++i)
  11. {
  12. for(j = 0; j < 3; ++j)
  13. printf("%c ", matrix[i][j]); ////? %c מה התפקיד של
  14.  
  15. printf("\n");
  16. }
  17.  
  18. return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement