fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main (){
  5. int i,j,n;
  6. int zbr=0;
  7. int x[3][3] = {3,-2,1,4,-5,-8,4,0,0};
  8.  
  9. for(i=0; i<3; i++){
  10. for(j=0; j<3; j++){
  11. if(i==j){
  12.  
  13. }
  14. }
  15. }
  16. printf("%d", x[i][j]);
  17. return 0;
  18.  
  19. }
  20.  
Success #stdin #stdout 0.01s 5304KB
stdin
 
stdout
Standard output is empty