Program skipping cin's |
|
[2 replies] Last: thank you (by closed account Ey6Cko23)
|
by Frenzy
First Time trying to create Functions - Crazy Error Messages
|
|
[6 replies] Last: Not sure if this makes a difference but my teacher taught us to compi... (by TheIdeasMan)
|
by connorhutch
Loops and Arrays
|
|
[3 replies] Last: so I'm thinking some kind of size of the array You need a counter o... (by AbstractionAnon)
|
Char array to int array conversion |
|
[6 replies] Last: @coder777 could you please explain this line: for(int i = 0; num... (by closed account Ey6Cko23)
|
by Harutyun
Array not assigning correctly.
|
|
[6 replies] Last: Yes! It is an array of characters! Damn I forgot about that. Thanks gu... (by Harutyun)
|
by smbumblebee
Returns from Function
|
|
[3 replies] Last: line 80: total is not initialized. line 20: main() should always r... (by AbstractionAnon)
|
by plsalinas
Loop subtracts 1 day each time it loops.
|
|
[2 replies] Last: @ne555 I'll keep that in mind but for now I'm going to comply with th... (by plsalinas)
|
by asya
Polynomial Array Overloaded Operator
|
|
[12 replies] Last: Don't give up. You've very close. Mostly simple mistakes that need to... (by AbstractionAnon)
|
by jayrobneto
Guessing game - code the player
|
|
[2 replies] Last: You have extraneous semi-colons on lines 13 and 17 which makes your lo... (by cire)
|
by jgg2002
Sort by grade AND by name
|
|
[4 replies] Last: @jib .. I was looking for a more complicated error but the answer was ... (by jgg2002)
|
by Robocroakie
Hi all!! I've just written some code for an assignment, and I have NO idea where I've gone wrong! Please help!!
|
|
[3 replies] Last: As far as I'm concerned, I was always taught to close files upon progr... (by WakeofMisery)
|
by tdyoung
2 programs I can't seem to figure out here
|
|
[1 reply] : For the first program, consider creating an if statement inside the fo... (by WakeofMisery)
|
by chris crunch
What is //NOLINT?
|
|
[1 reply] : That's a comment. In this case, it's a comment designed to be read by ... (by Moschops)
|
by etrusks
operator->()
|
|
[7 replies] Last: Tnx for an answer man. This is my bad that I didn't see it actually :... (by etrusks)
|
by zeroisk
Command line arguments in Visual Studio.
|
|
[2 replies] Last: If you run your project inside VS you can set the parameters under P... (by Thomas1965)
|
by alex067
Why won't this print?
|
|
[2 replies] Last: I fixed the issue, my array was already sorted from calling a previous... (by alex067)
|
by alex067
Deleting dynamic array
|
|
[1 reply] : When deleting a dynamically allocated array you should always use del... (by Peter87)
|
Why isn't my set setting? |
|
[8 replies] Last: You're right! I've been coding for 7 weeks now and can't read my own w... (by itsbenbroughton)
|
by Rholar
List Insert function error
|
|
[1 reply] : Before C++11 you couldn't pass const_iterator to the insert function. ... (by Peter87)
|
How to pass a data member by reference from main? |
|
[3 replies] Last: If the vector is a member of A, it is also a member of B. Why does yo... (by cire)
|