già fatto guys ^^

codice:
	i=0;
	while(decimalValue > 0) {
		
		temp = decimalValue % 10;
		cifre[i] = temp;

		//printf("cifra[%d]: %d\n",i,temp);
		decimalValue=decimalValue / 10;
		i++;
	}