CoolInterview.com - World's Largest Collection of Interview Questions
Home| Ask Questions| About Us| Feedback| Contact Us|
 Interview Questions  
 Our Services  

Get 9,000 Interview Questions & Answers in an eBook.


  • 9500+ Pages
  • 9000 Question & Answers
  • All Tech. Categories
  • 14 MB Content

    Get it now !!



    Send your Resume to 6000 Companies

  • COOLINTERVIEW.COM LANGUAGES C++ DETAILS



    Question :
    Given an integer N>0,write a recursive c++ function that writes the integer 1,2,.......N ?

     Posted by: Amily    Date: 11/15/2008

    Contact Author  Contact Author


    Answer :
    void Display(int nNumber)
    {
    if(nNumber > 1)
    Display(nNumber - 1);
    else
    printf("
    %d", nNumber);
    }

     Posted by: Kishore Kumar Naik P    

    Contact Author  Contact Author
    #include<iostream.h>
    #include<conio.h>
    void main()
    {
    clrscr();
    int i,n;
    cout<<"enter your wish to get it";
    cin>>n;
    for(i=1;i<=n+1;i++)
    {
    cout<<i;
    if(i==n)
    {
    }
    else
    {
    cout<<",";
    }
    }
    getch();
    }



     Posted by: hitesh gangaprasad chaurasia    

    Contact Author  Contact Author
    void print_value(int max_value, int i)
    {
    if (i ^= 0)
    {
    cout <<max_value - i;
    print_value(max_value, i-1);
    }
    }

    int main()
    {
    int value;

    cout<< "Enter the value of n:";
    cin >> value;

    print_value(value, value);

    return 0;
    };

     Posted by: Shameer    

    Contact Author  Contact Author
    void recrsv(int n)
    {
    int m;
    m = n-(n-1);
    cout<<m<<endl;
    recrsv(m);
    }

     Posted by: Kanjnir    

    Contact Author  Contact Author
    #include<iostream>
    using namespace std;

    static int i=1;

    void fun(int N)
    {
    if(i<=N)
    {
    printf("%d ",i);
    i++;
    fun(N);
    }
    }

    main()
    {
    int No;
    cout<<"Enter the No: "<<endl;
    cin>>No;
    cout<<"Entered No: is "<<No<<endl;

    fun(No);
    }



     Posted by: corah    

    Contact Author  Contact Author
    #include"iostream.h"
    #include"conio.h"
    void integer (int n,int i)
    {if ( i<=n)
    {cout<<"
    "<<i;
    ++i;
    integer(n,i);
    }

    }

    void main()
    {clrscr();
    cout<<"
    ENTER N : ";
    int n;
    cin>>n;
    integer(n,1);
    }

     Posted by: Priyank Shah    

    Contact Author  Contact Author
    void printN (int N)
    {
    if (N == 0)
    return;
    if (N > 0)
    printN(N-1);
    cout << N << ", ";
    }

     Posted by: Udayasankar N    

    Contact Author  Contact Author

    © CoolInterview.com
    Today's Special: Get Free Magazine from SAP now!

    A D V E R T I S E M E N T








    If you have the better answer, then send it to us. We will display your answer after the approval.
    Name :*
    Email Id :*
    Answer :*
    Verification Code Code Image - Please contact webmaster if you have problems seeing this image code Not readable? Load New Code
    Process Verification  Enter the above shown code:*
    Inform me about updated answers to this question

       


    Rate the above answer. Help us to know about the answer.
    Category C++ Interview Questions
    Rating (0.0) By 0 users
    Added 11/15/2008
    Views 52
    Rate it!
    Free Offers 300 Free Magazines for you. No credit card required. No Shipping Charges. Absolutely Free for 1 Year.

    Please Note: We keep on updating better answers to this site. Subscribe to our newsletter to get notified when better answer is posted.

    Notify me when better answer is posted!
    Email:

    View ALL C++ Interview Questions


    Sponsored Links  

    Google Search

    Google

    CoolInterview.com is a part of Vyom Network.
    Copyright ©2003-2009 Vyom Technosoft Pvt. Ltd., All Rights Reserved. Privacy Policy
    Page URL: http://www.coolinterview.com/interview/16181/Default.asp?cachecommand=bypass


    Download Yahoo Messenger | Placement Papers| FREE SMS | ASP .Net Tutorial

    1.12