Jan 18, 2014 at 10:25am UTC
Hello!
Please, what is operator"::" meaning (in human language) inexpressions like:
ios::scientific
ios::fixed
In other words, what means the "word" "::"???
MANY THANKS!!!
Jan 18, 2014 at 10:36am UTC
:: separates out the elements that qualify a name. In the examples you've given, "ios::scientific" is the full name of the entity called "scientific" in the namespace called "ios".
Jan 18, 2014 at 10:54am UTC
It's called the binary scope resolution operator?
Last edited on Jan 18, 2014 at 10:55am UTC
Jan 18, 2014 at 3:17pm UTC
Sort of, I'm just wondering myself, I'm a beginner too and I read that that is what it's called...
Jan 18, 2014 at 7:55pm UTC
The scope resolution operator is someone you would have learned about if you had not been falsely taught to write "using namespace std;"