fork download
  1.  
  2. #include <stdio.h>
  3.  
  4.  
  5. int len1;
  6. int len2;
  7.  
  8. void testFunction(char [len1][len2] );
  9.  
  10.  
  11. void testFunction(char arr[len1][len2] )
  12. {
  13. printf("%s" , arr[len1-1] ) ;
  14. }
  15.  
  16.  
  17. int main(int argc,char *argv[])
  18. {
  19.  
  20. len1 = 10 ;
  21. len2 = 20 ;
  22.  
  23. char array[len1][len2] ;
  24.  
  25. array[len1-1][0] = 'a' ;
  26. array[len1-1][1] = '\0' ;
  27.  
  28. testFunction( array ) ;
  29.  
  30. return 0;
  31. }
Success #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
a