About 8,420,000 results
Open links in new tab
  1. c++ - Difference between | and || , or & and && - Stack Overflow

    Dec 28, 2015 · You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. What's reputation …

  2. What is the meaning of prepended double colon - Stack Overflow

    I found this line of a code in a class which I have to modify: ::Configuration * tmpCo = m_configurationDB;//pointer to current db and I don't know what exactly means the double …

  3. C++ code file extension? What is the difference between .cc and …

    95 .cpp is the recommended extension for C++ as far as I know. Some people even recommend using .hpp for C++ headers, just to differentiate from C. Although the compiler doesn't care …

  4. Storing C++ template function definitions in a .CPP file

    The problem you describe can be solved by defining the template in the header, or via the approach you describe above. I recommend reading the following points from the C++ FAQ …

  5. Why are #ifndef and #define used in C++ header files?

    I have been seeing code like this usually in the start of header files: #ifndef HEADERFILE_H #define HEADERFILE_H And at the end of the file is #endif What is the purpose of this?

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

    I just want to point out to anyone new coming along that ever since C++11, explicit can be applied to more than just constructors. It's now valid when applied to conversion operators as well. …

  7. How can I change the version of the C++ language standard used …

    Oct 25, 2023 · I printed the value of the __cplusplus macro and found out that my files are executed with C++98 in Visual Studio Code. I'm using the CodeRunner extension. How do I …

  8. Check if a string contains a string in C++ - Stack Overflow

    Feb 26, 2010 · I have a variable of type std::string. I want to check if it contains a certain std::string. How would I do that? Is there a function that returns true if the string is found, and …

  9. How to iterate through a list of objects in C++? - Stack Overflow

    Mar 8, 2014 · Learn how to iterate through a list of objects in C++ using various methods and techniques.

  10. How can I get current time and date in C++? - Stack Overflow

    The ffead-cpp provides multiple utility classes for various tasks. One such class is the Date class which provides a lot of features right from Date operations to date arithmetic.