fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int a[2][3] = {30,20,10,14,15,16};
  6. int i,j;
  7. printf("values are");
  8. for(i = 0;i< 2;i++)
  9. {
  10. printf("\n");
  11. for( j=0;j<3;j++)
  12. {
  13. printf("%d",&a[i][j]);
  14. }}
  15. return 0;
  16.  
  17.  
  18. }
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
values are
-1076322264-1076322260-1076322256
-1076322252-1076322248-1076322244