fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int arr[5][5];
  6. printf("Enter 25 inputs please- ");
  7. for(int i=0;i<5;i++)
  8. {
  9. for(int j=0;j<5;j++)
  10. {scanf("%d",&arr[i][j]);
  11. }
  12.  
  13. }
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
Enter 25 inputs please-