fork(1) download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int a[2][2]={{1,2},{3,4}};
  5. printf("%d \t %d",**(a+1),a[1][0]);
  6. return 0;
  7. }
Success #stdin #stdout 0s 2052KB
stdin
Standard input is empty
stdout
3 	 3