i want to get matrix values, rows and coloumn from user input. So i'm implementing do while to do this:
This is only for the rows:
do {
printf ("Inserisci il numero di righe ( intero-positivo-diverso da 0): ");
scanf ("%d",&righe);
} while (righe<=0);
I want to check that user insert only integers. what can i do?