I need help in coming up with the best solution to solve Input Buffer Problem within integer array. Code for calculator to display matrix: Code: #include #define SIZE 5 main() { int a[SIZE][SIZE],i,j,row,column ; do { printf("input row:\n"); scanf("%d", &row); fflush(stdin); printf("input column:\n"); scanf("%d",&column); fflush(stdin); } while(row == 0 || column == 0); printf("Enter the row values for matrix, followed by ...