by laniepp73
Array
|
|
[5 replies] Last: Line 16: sn is undefined. Since you can calculate grades for 5 stud... (by AbstractionAnon)
|
Function uses like this |
|
[2 replies] Last: Thanks for the great answer! I also do this when I'm testing out my p... (by boost lexical cast)
|
Review HW Code If I can make it simpler? |
|
[7 replies] Last: For studying purpose, there is no problem with using namespace std; .... (by SakurasouBusters)
|
by hoboCPP
I don't understand: "friend std::ostream & operator<<(std::ostream & out, const Hour & h);"
|
|
[2 replies] Last: > I'm not sure what ostream is or why he's needed. https://msdn.micros... (by mpark4656)
|
by sakers288
Build Error from changing cout string
|
|
[10 replies] Last: Lol ok. Thanks. (by sakers288)
|
by jaybee760
If the age is between...
|
|
[1 reply] : if(age >= 17 && age <= 42) { // Do something... } (by SakurasouBusters)
|
Data type conversion int to double within function |
|
[7 replies] Last: Lets say that you have thousand files in your program code and million... (by keskiverto)
|
by MaxwellD65
Getting part of string in CSV file and converting to int
|
|
[3 replies] Last: think about vfscanf to analyze and transform the line ReadStuff ( p... (by CptJY)
|
I want my entire program to run again but my loop is won't work the way intend it to |
|
[6 replies] Last: Y is not 'Y' ! Y is as variable 'Y' is the caracter. Add single quote... (by CptJY)
|
by peterbaaij
read-only error with string
|
|
[5 replies] Last: You could also replace the loop in your replace function with a ranged... (by jlb)
|
by FredDilb
Print Spiral with 2d array
|
|
[4 replies] Last: I edited both so they work without any command line arguments. I do se... (by FredDilb)
|
Sentinel, Query, and Looping Control: Can't Compile |
|
[5 replies] Last: To anyone who finds this thread, this was my problem: I had an extra ... (by CobaltThunder)
|
by hornet7288
tokenizing issue
|
|
[6 replies] Last: Thanks krako! Looks like stringstream was the way to go. (by hornet7288)
|
by cpp1024
Returning a pointer to dynamically allocated memory from a function
|
|
[4 replies] Last: "duplicate" is a common non-standard function called strdup() . https... (by Duthomhas)
|
by chocoluve
Help with command line
|
|
[2 replies] Last: Thank you! (by chocoluve)
|
by chocoluve
command-line argument error
|
|
[2 replies] Last: sigh thanks mate (by chocoluve)
|
by nyork3415
looping in array with class names
|
|
[2 replies] Last: line of string (first name) line of string (last name) int (year) int ... (by nyork3415)
|
by my2jlw3s
Floor function
|
|
[3 replies] Last: Hello my2jlw3s, During my dinner break I realized that rounding to th... (by Handy Andy)
|
by mmcro
Unable to return value from while loop/Issue with array
|
|
[1 reply] : int getDigit(int num) //This function finds how many digits are i... (by SamuelAdams)
|
C++ program to read n numbers and print the second largest number |
|
[3 replies] Last: 1. Read 'n' numbers: while (std::cin >> n) [CTRL-Z] to stop reading 2.... (by Boilerplate)
|