├── Print 1 to 10 ├── Print even no. from 2 to 50 ├── Print odd no from 1 to 10 ├── README.md └── Reverse the number 10 to 1 /Print 1 to 10: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | void numbers(int num){ 4 | if(num>10){ 5 | return; 6 | } 7 | cout< 2 | using namespace std; 3 | void Evennumbers(int num){ 4 | if(num>50){ 5 | return; 6 | } 7 | cout< 2 | using namespace std; 3 | 4 | void printName(int count) { 5 | if (count == 0) { 6 | return ; 7 | } 8 | cout << "Yadhavaramanan" << endl; 9 | printName(count - 1); 10 | } 11 | int main() { 12 | int size; 13 | cout<<"Enter the size:"; 14 | cin>>size; 15 | printName(size); 16 | } 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Recursive-Functions -------------------------------------------------------------------------------- /Reverse the number 10 to 1: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | void numbers(int num){ 4 | if(num<1){ 5 | return; 6 | } 7 | cout<