[SOLVED] what will bw the output of this code? c++

Issue

#include <iostream>

using namespace std;


int f(int i){
  int k=0;
  if(i>0)
    {
        int k=i*10;
    }
    else {
        int k= i++;
    }
    cout <<k;
    return i;
}


int main()
{
    cout << f(1);
    cout << ".";
    cout << f(0);

    return 0;
}

This is the code, compiler shows "01.01" which i quite don’t understand, any help will be very much welcomed!

Solution

int k = i * 10; and int k = i++; are declarations of k that shadow the outer k. The statement std::cout << k; in the outer scope therefore always outputs zero.

The only effect of the if body is to increase i by 1. And it only does that if i is zero (or less). That value of i is returned printed.

Thus the output is 01.01. Armed with a line by line debugger, the shadowing effect will be obvious.

Answered By – Bathsheba

Answer Checked By – Terry (BugsFixing Volunteer)

Leave a Reply

Your email address will not be published. Required fields are marked *