Acasa
Ce valoare returnează funcţia la apelul NC(2405)?
int NC(int n) { if ( n <= 9 ) return 1; else return NC(n/10)+1; } Răspuns:
Verifică