i just started to learn c++, and I don't really understand, why when I cout &d, it shows up the char d as many times as i have showed it up already + add 1 time.
So it shows 3 time the char "d" here... for the line
cout << &d << endl;
if someone can explain me why, with simple word, i would thanks him. And i'm sorry if the question is stupid.
#include <iostream>
using namespace std;
int main()
{
char d('d');
cout << d << endl;
cout << d << endl;
cout << &d << endl;
return 0;
}