by dede67
please correct
|
|
[3 replies] Last: Thanks so much seeplus and salem c. much appreciated (by dede67)
|
by bstroe
Average word length
|
|
[5 replies] Last: #include <iostream> #include <iomanip> #include <cctype> using namesp... (by lastchance)
|
by Brian845
In design phase. Is this layout/syntax correct? (1,2)
|
|
[27 replies] Last: I have made both changes. The only change I would have made was whe... (by Brian845)
|
dynamic memory allocation inside class |
|
[4 replies] Last: There's no need to use strcpy_s here as the allocated buffer is the co... (by seeplus)
|
by coder0101
vowels using find_first_of()
|
|
[2 replies] Last: #include <iostream> #include <string> #include <cctype> int main() ... (by seeplus)
|
by coder0101
acronyms using find()
|
|
[3 replies] Last: Using stringstream: #include <iostream> #include <string> #include ... (by seeplus)
|
by DonnaPin
Visual studio / c++17 question?
|
|
[7 replies] Last: @DonnaPin, I am sorry. You are right, I just forgot that insert retur... (by thmm)
|
by av16352
Menu program not exiting right
|
|
[2 replies] Last: Thank you! I realized that almost 5 minutes later (by av16352)
|
by mechatronicb
Return value from void into array
|
|
[2 replies] Last: Basically, i confused what supposed to do. The solution that I mention... (by mechatronicb)
|
by joe100
Using values in multiple functions
|
|
[4 replies] Last: salem c Thank you! That is what I wanted to do just wasn't sure how to... (by joe100)
|
by moctar
Binary divisibility
|
|
[6 replies] Last: yes i am allowed to use division but not modulo, as i have mentionned ... (by moctar)
|
Why does my pop function in my .cpp file not erase the last element from my stack? |
|
[5 replies] Last: void EvenStack::pop() { while (!myStack.empty () ) //¿? { st... (by ne555)
|
by av16352
Need help with assignment
|
|
[14 replies] Last: Any time. Glad it helped. Andy (by Handy Andy)
|
by kerem59
Basic Functions
|
|
[3 replies] Last: int sum_pr(int x, int y) { return x >= y ? x + y : x * y; } fin... (by seeplus)
|
by thmm
Preprocessor
|
|
[8 replies] Last: Thanks everyone, now it's totally clear. (by thmm)
|
by chipp
namespace syntax
|
|
[7 replies] Last: Oh you're right, it is a different order than the standard attributes. (by Ganado)
|
I'm New |
|
[2 replies] Last: When learning to program you can follow this pattern while wanting to... (by thmm)
|
by DragNinja1
Need help!
|
|
[1 reply] : When compiling it has the following errors/warning: In member functio... (by coder777)
|
by samj
Change in bool value seems to be not applied to while loop condition
|
|
[9 replies] Last: Thank you! (by samj)
|
by moctar
matrix inverse
|
|
[6 replies] Last: Thank you! i will have a look into it. (by moctar)
|