Tracing the output, could not figure it out even when debugging it?












0














When calling the function f4 how is the function returning 6? i really cant figure out how the function operates shouldnt it just return 1? because of (n-1)



  #include <iostream>
#include<cmath>
#include<fstream>
using namespace std;
int x = 3;
void f1(int, int &);

int f4(int);

int main()

{
int x = 5; int y = 10;
f1(x, y);
cout << x << "t" << y << endl;
x = 15; y = 20;
f1(x++, x);


cout << x << "t" << y << endl;
x = 3;
cout << f4(x) << endl;

system("pause");
return 0;
}

void f1(int a, int &b)
{
a *= 2; b += x;
cout << a << "t" << b << endl;
}

int f4(int n) {
if (n == 1 || n == 0)
return n;
else
return n + f4(n - 1);
}









share|improve this question



























    0














    When calling the function f4 how is the function returning 6? i really cant figure out how the function operates shouldnt it just return 1? because of (n-1)



      #include <iostream>
    #include<cmath>
    #include<fstream>
    using namespace std;
    int x = 3;
    void f1(int, int &);

    int f4(int);

    int main()

    {
    int x = 5; int y = 10;
    f1(x, y);
    cout << x << "t" << y << endl;
    x = 15; y = 20;
    f1(x++, x);


    cout << x << "t" << y << endl;
    x = 3;
    cout << f4(x) << endl;

    system("pause");
    return 0;
    }

    void f1(int a, int &b)
    {
    a *= 2; b += x;
    cout << a << "t" << b << endl;
    }

    int f4(int n) {
    if (n == 1 || n == 0)
    return n;
    else
    return n + f4(n - 1);
    }









    share|improve this question

























      0












      0








      0







      When calling the function f4 how is the function returning 6? i really cant figure out how the function operates shouldnt it just return 1? because of (n-1)



        #include <iostream>
      #include<cmath>
      #include<fstream>
      using namespace std;
      int x = 3;
      void f1(int, int &);

      int f4(int);

      int main()

      {
      int x = 5; int y = 10;
      f1(x, y);
      cout << x << "t" << y << endl;
      x = 15; y = 20;
      f1(x++, x);


      cout << x << "t" << y << endl;
      x = 3;
      cout << f4(x) << endl;

      system("pause");
      return 0;
      }

      void f1(int a, int &b)
      {
      a *= 2; b += x;
      cout << a << "t" << b << endl;
      }

      int f4(int n) {
      if (n == 1 || n == 0)
      return n;
      else
      return n + f4(n - 1);
      }









      share|improve this question













      When calling the function f4 how is the function returning 6? i really cant figure out how the function operates shouldnt it just return 1? because of (n-1)



        #include <iostream>
      #include<cmath>
      #include<fstream>
      using namespace std;
      int x = 3;
      void f1(int, int &);

      int f4(int);

      int main()

      {
      int x = 5; int y = 10;
      f1(x, y);
      cout << x << "t" << y << endl;
      x = 15; y = 20;
      f1(x++, x);


      cout << x << "t" << y << endl;
      x = 3;
      cout << f4(x) << endl;

      system("pause");
      return 0;
      }

      void f1(int a, int &b)
      {
      a *= 2; b += x;
      cout << a << "t" << b << endl;
      }

      int f4(int n) {
      if (n == 1 || n == 0)
      return n;
      else
      return n + f4(n - 1);
      }






      c++ function output tracing






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 20 at 21:19









      Sarah_Xx

      616




      616
























          2 Answers
          2






          active

          oldest

          votes


















          2














          The f4 function is recursive. This calling with a number other than 1 or 0 will make it recurse. You call it with 3, so the compiler (simplified) sees



          f4(3) => 3 + f4(2) => 3 + 2 + f4(1) => 3 + 2 + 1 => 5 + 1 => 6





          share|improve this answer





























            2














            recursion in a nutshell..



               int f4(int n) {
            if (n == 1 || n == 0)
            return n;
            else
            return n + f4(n - 1);
            }


            Your code states that when n is 1 or 0 just return n, otherwise add n to the result of the function.



            that sets up a recursive stack where the first call n = 3 and it recurses.
            on the next call n = 2 and it recurses.
            on the next call n = 1 and it returns as well as the rest of the stack leading to 1 + 2 + 3 which is 6.






            share|improve this answer





















              Your Answer






              StackExchange.ifUsing("editor", function () {
              StackExchange.using("externalEditor", function () {
              StackExchange.using("snippets", function () {
              StackExchange.snippets.init();
              });
              });
              }, "code-snippets");

              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "1"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53401684%2ftracing-the-output-could-not-figure-it-out-even-when-debugging-it%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              2














              The f4 function is recursive. This calling with a number other than 1 or 0 will make it recurse. You call it with 3, so the compiler (simplified) sees



              f4(3) => 3 + f4(2) => 3 + 2 + f4(1) => 3 + 2 + 1 => 5 + 1 => 6





              share|improve this answer


























                2














                The f4 function is recursive. This calling with a number other than 1 or 0 will make it recurse. You call it with 3, so the compiler (simplified) sees



                f4(3) => 3 + f4(2) => 3 + 2 + f4(1) => 3 + 2 + 1 => 5 + 1 => 6





                share|improve this answer
























                  2












                  2








                  2






                  The f4 function is recursive. This calling with a number other than 1 or 0 will make it recurse. You call it with 3, so the compiler (simplified) sees



                  f4(3) => 3 + f4(2) => 3 + 2 + f4(1) => 3 + 2 + 1 => 5 + 1 => 6





                  share|improve this answer












                  The f4 function is recursive. This calling with a number other than 1 or 0 will make it recurse. You call it with 3, so the compiler (simplified) sees



                  f4(3) => 3 + f4(2) => 3 + 2 + f4(1) => 3 + 2 + 1 => 5 + 1 => 6






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 20 at 21:28









                  Bo R

                  616110




                  616110

























                      2














                      recursion in a nutshell..



                         int f4(int n) {
                      if (n == 1 || n == 0)
                      return n;
                      else
                      return n + f4(n - 1);
                      }


                      Your code states that when n is 1 or 0 just return n, otherwise add n to the result of the function.



                      that sets up a recursive stack where the first call n = 3 and it recurses.
                      on the next call n = 2 and it recurses.
                      on the next call n = 1 and it returns as well as the rest of the stack leading to 1 + 2 + 3 which is 6.






                      share|improve this answer


























                        2














                        recursion in a nutshell..



                           int f4(int n) {
                        if (n == 1 || n == 0)
                        return n;
                        else
                        return n + f4(n - 1);
                        }


                        Your code states that when n is 1 or 0 just return n, otherwise add n to the result of the function.



                        that sets up a recursive stack where the first call n = 3 and it recurses.
                        on the next call n = 2 and it recurses.
                        on the next call n = 1 and it returns as well as the rest of the stack leading to 1 + 2 + 3 which is 6.






                        share|improve this answer
























                          2












                          2








                          2






                          recursion in a nutshell..



                             int f4(int n) {
                          if (n == 1 || n == 0)
                          return n;
                          else
                          return n + f4(n - 1);
                          }


                          Your code states that when n is 1 or 0 just return n, otherwise add n to the result of the function.



                          that sets up a recursive stack where the first call n = 3 and it recurses.
                          on the next call n = 2 and it recurses.
                          on the next call n = 1 and it returns as well as the rest of the stack leading to 1 + 2 + 3 which is 6.






                          share|improve this answer












                          recursion in a nutshell..



                             int f4(int n) {
                          if (n == 1 || n == 0)
                          return n;
                          else
                          return n + f4(n - 1);
                          }


                          Your code states that when n is 1 or 0 just return n, otherwise add n to the result of the function.



                          that sets up a recursive stack where the first call n = 3 and it recurses.
                          on the next call n = 2 and it recurses.
                          on the next call n = 1 and it returns as well as the rest of the stack leading to 1 + 2 + 3 which is 6.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 20 at 21:32









                          johnathan

                          2,158819




                          2,158819






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.





                              Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                              Please pay close attention to the following guidance:


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53401684%2ftracing-the-output-could-not-figure-it-out-even-when-debugging-it%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Futebolista

                              Feedback on college project

                              Albești (Vaslui)