Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main(){
  5.  
  6. char matrix[2][2][2];
  7.  
  8. return 0;
  9. }
  10.  
  11. int getMatrixData(char matrix[2][2][], int x, int y, int z) {
  12. return matrix[x][y][z];
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement