by slaidas
Wrong file output...
|
|
[1 reply] : The problem is of course on line 31. You keep overwriting the input. C... (by coder777)
|
by stbb24
Big O notation O(n)
|
|
[5 replies] Last: Ok thanks for your replies :) (by stbb24)
|
by baordog
Adpating on old c++ book
|
|
[1 reply] : If it's an old book, don't use it. I'm not sure what standard it's bas... (by closed account zb0S216C)
|
by steve9164
Using the "using" keyword with classes
|
|
[10 replies] Last: You cannot use the scope resolution operator on a enumeration. This is... (by closed account zb0S216C)
|
by Invader2010
A non-static member reference must be made relative to a specific object
|
|
[8 replies] Last: Remove these lines: class player; void name(player p); Also in the ... (by S G H)
|
by Datolius
Hi
|
|
[8 replies] Last: thank you all for supporting :) (by Datolius)
|
by ianrogerb
stdafx.h
|
|
[1 reply] : It should never be: #include <stdafx.h> It should be: #include "std... (by kbw)
|
by revin
Project Euler
|
|
[8 replies] Last: Wow...how did I never know about this site?? Very fun problems! So far... (by rollie)
|
by emptycl0ud9
Simple encryption program
|
|
[3 replies] Last: Here's a C++ translation: #include <iostream> #include <map> #includ... (by Cubbi)
|
by carbonera
x64 ports ...
|
|
[8 replies] Last: If you feel like it's a good opportunity to enforce a company-wide cod... (by Cubbi)
|
by dancks
trouble with linked list
|
|
[1 reply] : for the newbies who are curious I figured it out on my own. I posted t... (by dancks)
|
by x1222
Calculating run time with O(nlog2n)
|
|
[no replies]
|
Makefile Libraries |
|
[no replies]
|
Delete operator clarify |
|
[11 replies] Last: I'll look into it, I tried typing in Windows cmd: g++ -v and it gives ... (by closed account 4ET0pfjN)
|
by djungalio
Arrays and pointers
|
|
[1 reply] : Please edit your post, or reply, with source code so that we see what ... (by Catfish2)
|
emptying BST |
|
[7 replies] Last: Finally I figured it out, I was mixing up left->left @ each level of r... (by closed account 4ET0pfjN)
|
Colour |
|
[2 replies] Last: int A; A = 1; while (A == 1) You can change that into: while(1) ... (by S G H)
|
by chacha17
printing words around
|
|
[no replies]
|
by nefertum
Composite+Decorator in C++
|
|
[no replies]
|
by Hasala
Calling a function for each second
|
|
[2 replies] Last: If you don't have c++11: #include <ctime> using namespace std; int ... (by viliml)
|