6
votes
6answers
211 views
Declaring and initializing a variable in a Conditional or Control statement in C++
In Stroustrup's The C++ Programming Language: Special Edition (3rd Ed), Stroustrup writes that the declaration and initialization of variables in the conditionals of control statem …
4
votes
5answers
348 views
Why people think that the only man who created C++ was Bjarne Stroustrup?
I am currently reading Stroustrup's book "Design and Evolution of C++" and it turns out that he was not the one who developed C++. When I hear someone saying "Bjarne Stroustrup dev …
1
vote
4answers
80 views
TCPL 5.9.9 (C++): Where would it make sense to use a name in its own initializer?
This is a question from the most recent version of Stroustrup's "The C++ Programming Language".
I've been mulling this over in my head for the past couple days.
The only thing I …
7
votes
4answers
784 views
Bjarne’s new book - anyone done the exercises?
I'm doing the exercises in Stroustrup's new book "Programming Principles and Practice Using C++" and was wondering if anyone on SO has done them and is willing to share the knowled …
3
votes
11answers
830 views
Is C++ a “waste of time”?
I ran into this supposed interview of Bjarne Stroustrup, the inventor of C++.
http://artlung.com/smorgasborg/Invention_of_Cplusplus.shtml
Stroustrup: Well, it's been long enou …
0
votes
4answers
955 views
Is there a .pdf or .chm version of The C++ Programming Language by B. Stroustrup ? [closed]
I wonder if there is a .pdf or .chm version of of The C++ Programming Language by B. Stroustrup? I switch workplaces very often and i need a digital version so i don't have to carr …
1
vote
2answers
423 views
c++ template function overloading. [closed]
Below are lines from "the c++ programming language"
template<class T > T sqrt(T );
template<class T > complex<T> sqrt(complex<T>);
double sqrt(double);
voi …
