How to get a sentence? |
|
[4 replies] Last: You mean only read in the first three words? you would have to modify ... (by giblit)
|
Pausing a calculator program |
|
[1 reply] : cin leaves the newline character in the stream. Adding cin.ignore() to... (by palauan73)
|
by redrooman
Please Help!! Cant see what im doing wrong
|
|
[3 replies] Last: As I said this function has no sense. Instead of processing of the loc... (by vlad from moscow)
|
by antu55
c++ fstream
|
|
[4 replies] Last: thanks man. now i know where my mistake. (by antu55)
|
by billycro
Templating Errors
|
|
[1 reply] : templates must all be in the header (cut/paste from the cpp). Also, s... (by Lowest0ne)
|
by sakonpure6
Can Char be given numerical values?
|
|
[10 replies] Last: 'A' is output as a character, but it is really a number: char ch = 'A... (by Lowest0ne)
|
by Fenrir
Question about Input ! Need your help!
|
|
[7 replies] Last: I'm in a basic c++ class as well and to me that stuff is a necessity. ... (by giblit)
|
by sakonpure6
A more efficient code?
|
|
[3 replies] Last: This should work: int indexToMax = 0; for(unsigned int i = 1; i<10; ... (by closed account D80DSL3A)
|
by Nooby23
Help with array sorting
|
|
[2 replies] Last: Haha I definitely feel silly. I was changing too much. Always the litt... (by Nooby23)
|
by Bawnawgwa
Need help shooting projectile at character in C language
|
|
[5 replies] Last: > Well... it is indented? No, it is not. By instance, ¿where does the... (by ne555)
|
by Nickjagg
A spell check...
|
|
[5 replies] Last: Here's what I've come up with since then. I know its been a long long ... (by Nickjagg)
|
by glennpl
assigning and object equivalent to object of same type with argument
|
|
[1 reply] : Instead of Cents CCentsum = cCentss2(8); you shold write Cents CCen... (by vlad from moscow)
|
by toonhead85
Classes help
|
|
[5 replies] Last: I greatly appreciate you help. I have one other question though. in... (by toonhead85)
|
by giblit
Which is better function() return; or function(reference)
|
|
[4 replies] Last: Yeah I can't think of too many scenario's I was just wondering because... (by giblit)
|
by uzferry
need help with c++11
|
|
[5 replies] Last: I can compile it fine with 4.8.0 By the way, that code is overkill. (by ne555)
|
by Gluttons
Reading the "+" & "-"
|
|
[3 replies] Last: Thank You very much!!! Problem Solved! (by Gluttons)
|
by rcast
Need help understanding linked lists
|
|
[2 replies] Last: Yes when I use new I use delete this is an example from a book. (by rcast)
|
by Jangoon24
Problems with defining an increment function
|
|
[4 replies] Last: I changed both of those functions to the following and they are now wo... (by Jangoon24)
|
by sashuman
Help with I/O file program
|
|
[1 reply] : ok, let's start from the... start. first, i believe you should use the... (by Stauricus)
|
I need a tutorial for void |
|
[1 reply] : There are two uses of void: 1) A void function: a function that doesn'... (by Fransje)
|