Guest User

Untitled

a guest
Jul 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3. template <int C, int R>
  4. inline
  5. void printmatrix(int (&a)[R][C], int m, int n){
  6. }
  7.  
  8. void printmatrix(int **a){
  9. }
  10. void printupper(int *a,int r_l,int r_h, int c_l, int c_h){
  11. }
  12.  
  13. void printlower(int *a,int r_l,int r_h, int c_l, int c_h){
  14. }
  15.  
  16. int main(){
  17.    int a[10][10];
  18.    //={ {1,2,3,4},
  19.            //{5,6,7,8},
  20.            //{9,10,11,12}};
  21.    //a[0]=1;
  22.    printmatrix(a);
  23. }
Add Comment
Please, Sign In to add comment