by Crowley18
Count sentence.
|
|
[2 replies] Last: use std::count() http://en.cppreference.com/w/cpp/algorithm/count (by gunnerfunner)
|
by lizzie1441
Process a data set of random numeric information
|
|
[1 reply] : so the steps in your program would be: 1. declare double myArray whic... (by gunnerfunner)
|
by Dymensity
What does cout<<" "; mean?
|
|
[1 reply] : It just outputs a space. (by helios)
|
by coolangel24
Parallelogram using For Loops
|
|
[4 replies] Last: Here's a couple of other obscure variants. I'm still working on a recu... (by lastchance)
|
by Arcy
Loop/array question
|
|
[6 replies] Last: Thank you for your help, AbstractionAnon. I think I understand what mi... (by Arcy)
|
by ufrnkiddo
Assign all values in a dynamically allocated 2d array at one time
|
|
[6 replies] Last: #include <iostream> int main (int argc, char * argv ) { int row_... (by closed account 48T7M4Gy)
|
by cuttinace
Program that determines if number is prime. How do I make it work for multiple numbers?
|
|
[2 replies] Last: bool is_prime(int num){ //lines 19--24 return count==2; } int ... (by ne555)
|
by casey250
How to Read a sentence in a .txt file HELP!
|
|
[1 reply] : inputFile.open("File.txt"); inputFile >> one; inputFile >> two; You... (by mbozzi)
|
by CisntEZ
For loop output?
|
|
[1 reply] : Try it. 0 0 4 0 8 (by joe864864)
|
by ISO101
Triplet Template Class
|
|
[5 replies] Last: thanks cire, one of these days I'll learn to count! (by gunnerfunner)
|
by jaitoine
Error in my program
|
|
[2 replies] Last: break; under default. Can add error message too. (if it applies)... (by kingkush)
|
All help is appreciated. |
|
[11 replies] Last: I have stopped working on it for now so its the same as above. Spent t... (by karmakrazy937)
|
by kingkush
How to overload > operator?
|
|
[10 replies] Last: bool operator < (const CardTemplate& lhs, const CardTemplate& rhs) { ... (by kingkush)
|
by XRayKiller
setw Problems?
|
|
[4 replies] Last: Hello XRayKiller, I do not know if this will work with real numbers, ... (by Handy Andy)
|
by klknowles
i need help with array
|
|
[2 replies] Last: You can display individual member variables without overloading but if... (by kingkush)
|
by SoLix09
SDL.h No such file or directory
|
|
[1 reply] : Instead of -lSDL2 I think you should use `sdl2-config --libs` . And... (by Peter87)
|
by Dagr
Help!
|
|
[2 replies] Last: thanks (by Dagr)
|
summation symbol in C++ |
|
[7 replies] Last: > std::cout.imbue Not actually needed on Unix/Linux since you're usin... (by Cubbi)
|
by Kmpck
Convert CString to DIR variable
|
|
[6 replies] Last: Hello Kmpck, A few months ago when I went looking for "dirent.h" I fo... (by Handy Andy)
|
by rajhansk
what is this argument?
|
|
[2 replies] Last: you can leave the name off args in function defs. for example void... (by jonnin)
|