Advertisement
Guest User

1

a guest
Apr 23rd, 2014
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. void beolvas(int matrix[][3]){
  2.          printf("%d\n",matrix[0][]);
  3. }
  4.  
  5. int main(void){
  6.         int matrix[3][3]={{1,2,3},{4,5,6},{7,8,9}};
  7.        
  8.         beolvas(matrix);
  9.         return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement