void positivo_negativo_nullo(int n) { if (n > 0) { printf("Valore Positivo!\n"); } else if (n == 0) { printf("Valore Nullo!\n"); } else { printf("Valore Negativo!\n"); } } void positivo_negativo_nullo(int n) { if (n > 0) { printf("Valore Positivo!\n"); } else { if (n == 0) { printf("Valore Nullo!\n"); } else { printf("Valore Negativo!\n"); } } }