by leonid1990
Run-time error when allocating new char[]
|
|
[10 replies] Last: Alright, thank you guys (by leonid1990)
|
by CassandraB
Loop Question
|
|
[5 replies] Last: Lines 21-26: Your editing doesn't seem right. Line 18, you're checki... (by AbstractionAnon)
|
by brudz13
Class and string question
|
|
[5 replies] Last: Here is how to copy a C++ string. string original("beans"); string c... (by Moschops)
|
by kell
compiling errors
|
|
[6 replies] Last: The error message says: /home/a/mymonero-simplewallet/src/monero_hea... (by MikeyBoy)
|
by sail456852
Variable sized arrays without using vector !
|
|
[11 replies] Last: #include <iostream> using namespace std; int main() { void do_wo... (by ne555)
|
by tomtran3110
'std::out_of_range'
|
|
[4 replies] Last: if(M.size()<user){ should be: if(M.size()<=user){ because i... (by cire)
|
by Enot02
The randomize()
|
|
[1 reply] : One problem is that you access memory you don't own. bool a ; while(... (by Thomas1965)
|
by tomtom61695
Reading in spaces.
|
|
[2 replies] Last: Ignore the last function. #include <iostream> #include <cstdlib> #i... (by tomtom61695)
|
Euler's number loop |
|
[3 replies] Last: Yes, but multiple postings are ultimately a time waster for those who ... (by TheIdeasMan)
|
Euler's Number Loop |
|
[9 replies] Last: Hi, Using your previous code, some poor man's debugging: do { e... (by TheIdeasMan)
|
by PopRockCandy
pointer object to str() does not return data
|
|
[2 replies] Last: I made the str() a pure virtual by making it = 0. so I should add a b... (by PopRockCandy)
|
by twinklestar
Simulations
|
|
[8 replies] Last: Sorry Im a bit confused. Do you need help finding a way to count the a... (by McNo)
|
by suppa
comparison between Array and Map
|
|
[1 reply] : If some value is entered 100 times and you only increase total once ... (by cire)
|
by sohdas
Random Words
|
|
[1 reply] : > online database (dictionary, etc.) that has many words I can draw f... (by JLBorges)
|
by Supershock01
Help with Sorting Array Code
|
|
[2 replies] Last: Thank you very much for your help! (by Supershock01)
|
by kromari
Write a program to output the sum and single digits of any integer
|
|
[4 replies] Last: while (num != 0) { num2 = num / 10; count++; //... (by kromari)
|
by kromari
homework help
|
|
[4 replies] Last: No I don't want to loop that code, its just an equation for the percen... (by kromari)
|
by HJSSAE
Starting a source code
|
|
[no replies]
|
Help explaining something |
|
[1 reply] : It does sound like the assignment wants you to add more than one file.... (by McNo)
|
by Takeru
Print out Median
|
|
[1 reply] : Your while loop here while (cin>>temp) temps.push_back(temp);... (by McNo)
|