• Share this text:
Report Abuse
Untitled - posted by guest on 26th June 2020 05:44:56 AM

/******************************************************************************




                            Online C Compiler.


                Code, Compile, Run and Debug C program online.


Write your code in this editor and press "Run" button to compile and execute it.




*******************************************************************************/




#include <stdio.h>




int main()


{


int matriz [3] [4] = { {10, 15, 20, 25}, { 30, 35, 40, 45} , {50, 55, 60, 65}};


for (int i =0; i<3;i++){


    for(int j=0;j<4;j++){


        printf("%4d", matriz[i][j]);


    }


    printf("\n");


}


    return 0;


}



Report Abuse

Login or Register to edit or copy and save this text. It's free.