About 2,450,000 results
Open links in new tab
  1. The Definitive C++ Book Guide and List - Stack Overflow

    The C++ Super-FAQ (Marshall Cline, Bjarne Stroustrup, and others) is an effort by the Standard C++ Foundation to unify the C++ FAQs previously maintained individually by Marshall Cline …

  2. Best introduction to C++ template metaprogramming?

    C++ template metaprogramming gives you all kind of new capabilities like passing types or list of types as arguments etc. Most of these capabilities are present in dynamically typed languages …

  3. What's the difference between a low-level, midlevel, and high-level ...

    Java and C++, for example, are both compiled languages, but many would consider C++ to be a lower level language than Java because it exposes low level system access, while Java runs …

  4. What's the difference between C and C++ - Stack Overflow

    Mar 13, 2009 · C++ provides stronger type checking than C and directly supports a wider range of programming styles than C. C++ is "a better C" in the sense that it supports the styles of …

  5. c++ - What is wrong with using goto? - Stack Overflow

    Aug 19, 2010 · 9 It's possible in C++ because it's possible in C. Whether you should or shouldn't use it is long-standing religious war. It was a design goal of C++ that 99-point-something …

  6. What are the major differences between C and C++ and when …

    Jan 22, 2009 · While C is a pure procedural language, C++ is a multi-paradigm language. It supports Generic programming: Allowing to write code once, and use it with different data …

  7. c++ - What is meant by Resource Acquisition is Initialization (RAII ...

    Feb 23, 2010 · 4 Many argue that RAII is a misnomer, but actually it is a right name for this idiom, just it is not explained well. Wikipedia explained behavior in detail: Resource acquisition is …

  8. What does void mean in C, C++, and C#? - Stack Overflow

    Jun 25, 2009 · Generic data pointer: void* data -- 'data' is a pointer to data of unknown type, and cannot be dereferenced Note: the void in a function argument is optional in C++, so int …

  9. Serial Port (RS -232) Connection in C++ - Stack Overflow

    RS-232 for Linux and Windows 1) Windows Serial Port Programming 2) Using the Serial Ports in Visual C++ 3) Serial Communication in Windows 1) You can use this with Windows (incl. …

  10. c++ - What does the explicit keyword mean? - Stack Overflow

    As Bjarne Stroustrup puts it (in "The C++ Programming Language", 4th Ed., 35.2.1, pp. 1011) on the question why std::duration cannot be implicitly constructed from a plain number: If you …