Computer Science, asked by jayativaid71262, 10 months ago

#include
void func(int n)
{
if(n <= 9){
std::cout< }
func(n / 10);
std::cout<< n % 10<<"\n";
}
int main()
{
int n;
std::cin>>n;
func(n);
return 0;
}

Answers

Answered by harshitasah597
0

Answer:

Write/type your questions clearly

Answered by ayush121rathore
0

Answer:

Where is the heading in your C++ programming

there should be #include iostream.h or conio.h or maths.h

Similar questions