by curseofcj
Getting digits out of an int?
|
|
[3 replies] Last: #include <string> class MyInteger { private: int x ; public... (by JLBorges)
|
by Nick89
Mystery for loop
|
|
[2 replies] Last: You would assume correctly. Thanks (by Nick89)
|
Functions |
|
[8 replies] Last: > So this question does not have to necessarily be done with functions... (by JLBorges)
|
by Dkob1
Pointers?
|
|
[8 replies] Last: Ok thanks for the help, appreciate it! (by Dkob1)
|
by brad97
Dynamically allocating private member variables?
|
|
[3 replies] Last: You declare dynamic member variables like any othe dynamic variables. ... (by Thomas1965)
|
User defined functions reading 2D Array from a file |
|
[1 reply] : > const int noOfRows = 5; > const int noOfColumns = 3; Are the numbe... (by JLBorges)
|
by Bligen
Straight forward program vs void functions
|
|
[3 replies] Last: Hi, Consider that you are writing a book: would you write the whole t... (by TheIdeasMan)
|
Function help with Program Perimeter |
|
[6 replies] Last: Please reload the page I edited my comment. (by ephraimr)
|
Help! Empty output when I compile a simple code |
|
[1 reply] : Make sure you are selecting a Console Application project -- because... (by Duthomhas)
|
Help? |
|
[3 replies] Last: Yes, use this loop. int n; int m = n; while(n > 0){ if( (n%10)%2 == 0... (by ephraimr)
|
by kerryleon
How do I open and write to a file w/out deleting previous contents?
|
|
[10 replies] Last: Yes, I can see how it's better (especially for me) to write to a file ... (by kerryleon)
|
by Pegasus1
Converting 2d Array into Vector
|
|
[2 replies] Last: Thank you! The following is a code that flattens a 100 x 200 2d array ... (by Pegasus1)
|
Structures Confusion |
|
[4 replies] Last: Yeah, I caught onto that after a minute or two. Thanks for your help t... (by closed account 3voN6Up4)
|
by brad97
Help Outputting Dynamic Array
|
|
[1 reply] : You have several problems with your code: 1. you are not allocating e... (by closed account E0p9LyTq)
|
by sadij97
Returning Time as strings--Help
|
|
[1 reply] : This: http://www.cplusplus.com/reference/ctime/strftime/?kw=strftime (by coder777)
|
by Pegasus1
Pushing Back A Vector Into a Vector
|
|
[3 replies] Last: I think I got it. Here is my code without using the standard vector in... (by Pegasus1)
|
Help with arrays and user-defined functions? |
|
[1 reply] : You need to convert the char into an int. Also you need to check for z... (by Thomas1965)
|
Code is not computing correctly. |
|
[2 replies] Last: You've just encountered an example of how fragile and error-prone it i... (by Chervil)
|
by moonman239
Linked list while loop not terminating at NULL
|
|
[9 replies] Last: I will try to solve it today. If it won't work I will give it to my fr... (by AlexanderThomas1983)
|
by apache23
Assistance in Object Oriented Bulls&Cows game.
|
|
[5 replies] Last: You also never call srand() to initialize the random number generator ... (by AbstractionAnon)
|