👤

ce se va afișa după apelul s (3)?
Limbaj C / C++:
void s(int x)
{
cout<<3+x<<'#';
for (int i=1; i<=x-1; i++)
s(i);
cout<<' ! ' ;
}