- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
- Interests
- coding, gaming.
7 Posted Topics
Hi, I've been learning about the std::copy function in the <algorithm> header and I'm stuck on this exercise that I gave my self. Let's see the code snippet first: #include <iostream> #include <vector> #include <algorithm> #include <iterator> using namespace std; ostream& operator<<(ostream& os, const int p_val) { os.put( p_val*2); return … | |
Hi folks, I've recently got into doing a bit of web development and got hosting for it. The website is consisted of mainly 3 separate folders(one for home page, 2 for 2subdomains) under the html root directory to avoid cluttering. To get to my home page on my main domain, … ![]() | |
Re: > #include <iostring> #include <string> | |
Re: It should tell you the specific DLL that it wants which in this case it didn't. In which you can just use [local deployment](http://msdn.microsoft.com/en-us/library/dd293574.aspx) and just include the DLL's in the same folder. But this doesnt seem like a problem with missing DLL's. Dont quote me though. | |
Re: I have the Primer Plus, and I am in the process of reading it (up to chapter 8 now). I think it is an excellent and well written book. Some people dislike it a lot because of a couple things: 1. The author dives in very deep in each topic, … | |
HI people, First post here, please go easy on me :) #include <iostream> #include <array> int main() { using namespace std; array<int, 5> cppArr = {1,2,3,4,5}; //"missing braces.." error and unresolved symbol highlight return 0; } With "-pedantic -Wall -Werror" specified, compiling the above snippet in eclipse (using cygwin or … |
The End.