Acasa
Show all questions
Ce va afisa urmatorul program? #include <iostream>using namespace std; void p(int n) { if (n) { cout<<n%5; p(n/5); cout<<n%5; } else cout<<’ ‘; } int main() { int n=1234; p(n); cout<<n; return 0; }