Functions |
|
[1 reply] : I was messing with this a few weeks ago as this question seems to come... (by jonnin)
|
by iif201
Functions in switch
|
|
[1 reply] : 1) Where does brandNew() 's block end? There is no closing brace. 2)... (by Xenophobe)
|
by adam2016
pointers to pointers
|
|
[7 replies] Last: I thought I had 3 dynamically allocated arrays? one = new int* ; /... (by keskiverto)
|
by vanilka
How to allow input of numbers greater than or equal to zero, but exclude everything else?
|
|
[4 replies] Last: #include <iostream> int get_int( int minv, int maxv ) { std::cou... (by JLBorges)
|
Urgent Help with C++ Pseudocode Assignment |
|
[1 reply] : think about what you need to do.. first, you need the table, which he... (by jonnin)
|
by Mashnar
Problem with compilation ( text to morse with beep).
|
|
[4 replies] Last: Deleted on OP’s request. (by Enoizat)
|
by schmungler13
Can't get my if/else statements to apply to cout
|
|
[3 replies] Last: No. A function only executes if you call it. The function main gets c... (by Repeater)
|
Error while trying to output values. |
|
[1 reply] : At line 28, you allocate an array of pointers to char. But each of tho... (by Chervil)
|
by netyoda
Help for Strings vs. Char
|
|
[3 replies] Last: Thanks for your question which pointed me in the right direction. I f... (by netyoda)
|
by sprajapat
User integer input & selection
|
|
[3 replies] Last: there's an error in the last if statement somewhere Repeater’s cod... (by Enoizat)
|
by adam2016
structs in main method?
|
|
[5 replies] Last: [quote=ndrewxie]I generally do it because it's more "correct" Bjarne ... (by Enoizat)
|
save data into an multidimentional array |
|
[6 replies] Last: > variable 'std::ifstream file' has initializer but incomplete type ... (by JLBorges)
|
by andreswp10
Arrays
|
|
[1 reply] : Here's a way that is simple to understand: cin >> input; bool input... (by Repeater)
|
by kamilhassaan
Beginner question. Why will this code crash?
|
|
[1 reply] : > Why will this code crash? With a conforming compiler, with or witho... (by JLBorges)
|
by Mr Pfister
Need help with theater seating problem
|
|
[1 reply] : Use. Code. Tags. #include <iostream> #include <string> #include <fstr... (by JayhawkZombie)
|
by BtheMan
compiling error
|
|
[1 reply] : Well, you should put the return statement after your while loop for on... (by JayhawkZombie)
|
by roids55
No match for operator << error
|
|
[1 reply] : sumDigits has a return type of void. You need to put the call to it... (by JayhawkZombie)
|
by cyberdrone
Extracting the amount of integers that contain the number "5" from a given range.
|
|
[10 replies] Last: I was just about to comment again asking about that, THANK YOU X100000... (by cyberdrone)
|
by Sentoo
File I/O, Vectors, and Classes
|
|
[1 reply] : You have a vector if int s, but your class does not have any conversi... (by JayhawkZombie)
|
by tieuholy
Trying to understand this recursive algorithm
|
|
[4 replies] Last: Oh you are absolutely fine @Enoizat. Thanks for your advice. I am jus... (by tieuholy)
|