by Doc 4141
Reading Text File
|
|
[2 replies] Last: #include <iostream> #include <string> #include<fstream> using namespa... (by Pured)
|
by sig226
Trouble with arrays
|
|
[3 replies] Last: void compute_max_min (int theData , int& dataSize, int& iCurrMin, int... (by Tiger58)
|
by Brooklyn
declaration int *arr;
|
|
[no replies]
|
by Anna22
Random number for value in an equation
|
|
[2 replies] Last: We got it! Excellent! Line 38: Using range seems a lot more straightf... (by Anna22)
|
by schnuber
Creating a thread with #include <thread>
|
|
[8 replies] Last: However I get a runtime error now unless I call thread_bacteria_life.... (by Cubbi)
|
by iamlearning
Im making a game (1,2)
|
|
[36 replies] Last: I've spotted another problem on lines 51,57, and 62. Where it says "in... (by CplusplusAcolyte)
|
by AdrianV
Setting spaces with loops?
|
|
[6 replies] Last: replace setw( steps * 5 ) with a for loop :P for( int i = 0; i < st... (by giblit)
|
by serrld113
Craps game of hell
|
|
[5 replies] Last: @Last post: As Mats said, just remove the quotes. Line 43: This line ... (by Albatross)
|
by wirowi
loops, loops, loops
|
|
[4 replies] Last: setw() is part of the C++ <iostream> library that allows you to fo... (by yulingo)
|
by zangyax
How can i convert this while statement to do while?
|
|
[3 replies] Last: There's always the easy way, which involves copying the while loop int... (by CplusplusAcolyte)
|
by bwilfong3
While loop help
|
|
[2 replies] Last: Thanks much for the help :) (by bwilfong3)
|
by Hazukiy
Void return?
|
|
[4 replies] Last: EDIT: I should really read other replies..... yulingo just said the ... (by Disch)
|
by PSlover14
bug in goto command
|
|
[1 reply] : Three words: don't use gotos. -Albatross (by Albatross)
|
Help with randomizing bunny program movements |
|
[1 reply] : That was definitely a lot you asked us to do, BUT I did it anyway beca... (by Albatross)
|
by ShadowKnight
dangerous of code
|
|
[8 replies] Last: cire .. do u mean that when the SomeFunction returns , the variable n... (by cire)
|
by jedibugs
Help Simulating Software buffer scenarios
|
|
[no replies]
|
by Nebur
Trouble with a program! Help apreciated :)
|
|
[2 replies] Last: It worked! I have no words to describe how grateful I feel towards you... (by Nebur)
|
Need help understanding passing pointers |
|
[3 replies] Last: @HEDO4EJIOBEK: Yes, I did forget the ")" at the end of the first line,... (by lightbulb101069)
|
by SaintCrazy
rock/paper/scissors
|
|
[7 replies] Last: I've played around with rock paper scissors concepts in C++ earlier on... (by CplusplusAcolyte)
|
by enemy
how to stop the for loop at certain i value
|
|
[3 replies] Last: I think he means like this int count = 0; for( i = 0; i < 10; ++i )... (by giblit)
|